a list of slides from nodeconf
you may want to take a look at the jsconf-gist too!
# Video: http://rubyhoedown2008.confreaks.com/08-chris-wanstrath-keynote.html | |
Hi everyone, I'm Chris Wanstrath. | |
When Jeremy asked me to come talk, I said yes. Hell yes. Immediately. But | |
then I took a few moments and thought, Wait, why? Why me? What am I supposed | |
to say that's interesting? Something about Ruby, perhaps. Maybe the | |
future of it. The future of something, at least. That sounds | |
keynote-y. | |
#!/usr/bin/perl | |
# Source: http://www.cpan.org/authors/id/G/GN/GNUTOO/dailymotion-dl.pl | |
# This program is free software: you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License as published by | |
# the Free Software Foundation, either version 3 of the License, or | |
# (at your option) any later version. | |
# | |
# This program is distributed in the hope that it will be useful, | |
# but WITHOUT ANY WARRANTY; without even the implied warranty of | |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
# Usage: show <local-port> <subdomain> | |
function show() { | |
DOMAIN=".tekacs.com" | |
REMOTE="$2$DOMAIN" | |
ssh -tR 1080:127.0.0.1:$1 vps "sudo ssh -Nl \$USER -L $REMOTE:80:127.0.0.1:1080 localhost" | |
} |
#!/bin/bash | |
# | |
# Credit: http://www.omgubuntu.co.uk/2010/09/saving-flash-videos-in-linux-tmp-no-longer-works/#comment-145254389 | |
# FLASHCOPY | |
# | |
# Will iterate through all open copies flashplayer and copy flash video to the | |
# current folder (or specified directory) with the .flv extension added. | |
# args=("$@") |
#!/usr/bin/env bash | |
# edit this list, or set GSD_SITES to add your custom sites | |
SITES="$GSD_SITES reddit.com forums.somethingawful.com somethingawful.com digg.com break.com news.ycombinator.com infoq.com bebo.com twitter.com facebook.com blip.com youtube.com vimeo.com delicious.com flickr.com friendster.com hi5.com linkedin.com livejournal.com meetup.com myspace.com plurk.com stickam.com stumbleupon.com yelp.com slashdot.com" | |
HOSTFILE="/etc/hosts" | |
if [ ! -w $HOSTFILE ] | |
then | |
echo "cannot write to $HOSTFILE, try running with sudo" |
a list of slides from nodeconf
you may want to take a look at the jsconf-gist too!
// ---------------------------------------------------------- | |
// A short snippet for detecting versions of IE in JavaScript | |
// without resorting to user-agent sniffing | |
// ---------------------------------------------------------- | |
// If you're not in IE (or IE version is less than 5) then: | |
// ie === undefined | |
// If you're in IE (>=5) then you can determine which version: | |
// ie === 7; // IE7 | |
// Thus, to detect IE: | |
// if (ie) {} |
everyone.on('connect', function(){ | |
//this is ok: | |
this.now.broadcastScore(scoreFile); | |
fs.watchFile(scoreFile, function () { | |
//how to call this one? | |
this.now.broadcastScore(scoreFile); | |
}); | |
}); |
node.js:134 | |
throw e; // process.nextTick error, or 'error' event on first tick | |
^ | |
Error: First argument needs to be a number, array or string. | |
at new Buffer (buffer.js:156:15) | |
at Object.readSync (fs.js:259:14) | |
at Object.<anonymous> (/home/hardik/node/nowscore/test.js:3:15) | |
at Module._compile (module.js:407:26) | |
at Object..js (module.js:413:10) | |
at Module.load (module.js:339:31) |