Skip to content

Instantly share code, notes, and snippets.

@victusfate
victusfate / README.md
Created May 30, 2011 16:26 — forked from bergie/README.md
Falsy Values tutorials
@victusfate
victusfate / client_side_coffeescript.coffee
Created May 30, 2011 14:58
client side CoffeeScript
msg = "world"
inv = "you"
show_message = (x,y) ->
$('#message').hide().text(x).fadeIn(1000,
-> $('#message').append('!')
)
$('#hint').hide().text(x).fadeIn(0)
@cowboy
cowboy / HEY-YOU.md
Last active February 27, 2025 12:24
jQuery Tiny Pub/Sub: A really, really, REALLY tiny pub/sub implementation for jQuery.
@isaacs
isaacs / node-and-npm-in-30-seconds.sh
Last active March 20, 2025 09:05
Use one of these techniques to install node and npm without having to sudo. Discussed in more detail at http://joyeur.com/2010/12/10/installing-node-and-npm/ Note: npm >=0.3 is *safer* when using sudo.
echo 'export PATH=$HOME/local/bin:$PATH' >> ~/.bashrc
. ~/.bashrc
mkdir ~/local
mkdir ~/node-latest-install
cd ~/node-latest-install
curl http://nodejs.org/dist/node-latest.tar.gz | tar xz --strip-components=1
./configure --prefix=~/local
make install # ok, fine, this step probably takes more than 30 seconds...
curl https://www.npmjs.org/install.sh | sh
#!/usr/bin/env node
var YUI = require("yui3").YUI;
YUI({
debug: true
}).use('node', 'io', function(Y) {
//Messing with the main page..
Y.one('title').set('innerHTML', 'Digg News Headlines');