Mindaugas Mačiulaitis

Results 9 comments of Mindaugas Mačiulaitis

> I end up using the following two commands: > > ``` > openssl genrsa -des3 -out private.pem 4096 > openssl rsa -in private.pem -outform PEM -pubout -out public.pem >...

@TCB13 Joining tables from different databases. ` QB::table('db1.some_table')->innerJoin( 'db2.some_table', 'db1.some_table.foreign_key', '=', 'db2.some_table.primary_key' ) ` Aliasing table names might be a workaround for that, but still, it is a workaround.

Will this ever be done? Current errors handling is just plain unusable.

Is this going in any time soon?

Same error. hset works with personId.

``` var cluster = require('cluster'); if (cluster.isMaster) { // Count the machine's CPUs var cpuCount = require('os').cpus().length; // Create a worker for each CPU for (var i = 0; i...