Skip to content

Instantly share code, notes, and snippets.

function joinBuffers(b1, b2){
// if one arg is null, be smart
if (!b1) return b2;
if (!b2) return b1;
var l1 = b1.length;
var l2 = b2.length;
var b3 = new Buffer(l1 + l2);
GNU nano 2.0.6 File: /etc/my.cnf
[mysqld]
datadir=/var/lib/mysql
socket=/var/lib/mysql/mysql.sock
user=mysql
# Default to using old password format for compatibility with mysql 3.x
# clients (those using the mysqlclient10 compatibility package).
old_passwords=1
bind-address=10.210.215.67