Skip to content

Instantly share code, notes, and snippets.

View excellentdrums's full-sized avatar
💭
living

Jim Drannbauer excellentdrums

💭
living
View GitHub Profile
@excellentdrums
excellentdrums / keybase.md
Last active February 26, 2018 19:26
keybase.md

Keybase proof

I hereby claim:

  • I am excellentdrums on github.
  • I am excellentdrums (https://keybase.io/excellentdrums) on keybase.
  • I have a public key ASBshOp0NMo7Pmsgha6kVpsat9zD_KJDLsYtNL2FYvI4kQo

To claim this, I am signing this object:

@excellentdrums
excellentdrums / about.md
Created August 9, 2011 14:44 — forked from jasonrudolph/about.md
Programming Achievements: How to Level Up as a Developer
@excellentdrums
excellentdrums / gist:800490
Created January 28, 2011 16:24
Using node-postgres to reuse a client until disconnecting
function Base(client) {
this.client = client;
}
Base.prototype.truncate = function(callback) {
self.client.query("TRUNCATE users;", function(err, result) {
callback(err, !result.rowCount);
});
}