start new:
tmux
start new with session name:
tmux new -s myname
var onClass = "ui-icon-circle-check", offClass = "ui-icon-circle-close"; | |
$( "input:checked[type=checkbox] " ).button({ icons: {primary: onClass} }); | |
$( "input[type=checkbox]:not(:checked)" ).button({ icons: {primary: offClass} }); | |
$( "input[type=checkbox]" ).click(function(){ | |
var swap = function(me, toAdd, toRemove) { | |
// find the LABEL for the checkbox | |
// ... which should be _immediately_ before or after the checkbox | |
var node = me.next(); |
function toCSV = function(table, cb) { | |
;;;;var cmd = spawn('mdb-export', [this.file, table]) | |
;;;;cmd.stdout.pipe(concat(function(err, out) { | |
;;;;;;;;;;;;if (err) return cb(err) | |
;;;;;;;;;;;;if (!out) return cb('no output') | |
;;;;;;;;;;;;cb(false, out.toString()) | |
;;;;;;;;})) | |
} |
Copy of these goals in order to facilitate discussions.
Community driven rating system for nodejs modules on npm in order to help in selecting the right one.
Whith 50k+ modules on npm finding the right module for the problem you have is becoming more tedious than it needs to be. Especially newcomers to nodejs are overwhelmed with the amount of modules to choose from.
After spending the better part of the month implementing date support | |
in RethinkDB, Mike Lucy sent the team the following e-mail. It would | |
have been funny, if it didn't cause thousands of programmers so much | |
pain. Read it, laugh, and weep! | |
----- | |
So, it turns out that we're only going to support dates between the | |
year 1400 and the year 10000 (inclusive), because that's what boost | |
supports. |
var http = require('http'); | |
var send = require('send'); | |
var urlParse = require('url').parse; | |
var count = 2; | |
var server = http.createServer(function (req, res) { | |
if (!--count) server.close(); // Only allow two connection and then exit. | |
send(req, urlParse(req.url).pathname) | |
.root(__dirname) | |
.pipe(res); |
# Hello, and welcome to makefile basics. | |
# | |
# You will learn why `make` is so great, and why, despite its "weird" syntax, | |
# it is actually a highly expressive, efficient, and powerful way to build | |
# programs. | |
# | |
# Once you're done here, go to | |
# http://www.gnu.org/software/make/manual/make.html | |
# to learn SOOOO much more. |
Leave suggestions in the comments below
The following instructions were able to get Google Contributor working for me, without a complete compromise of my browser settings. Some compromise, but that's what this is all about.
I'll keep this document updates as I learn more.