A line chart with mouseover so that you can read the y-value based on the closest x-value. The x-value is found using d3.mouse and scale.invert. The y-value is then found by bisecting the data.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This example shows how to setup an environment running Rails 3 beta 3 under ree-1.8.7-head with a 'rails3' gem set. | |
# pg gem does not seem to work with 1.9.2-head. Hence, reverting back to ree. | |
∴ rvm update --head | |
# ((Open a new shell)) or do 'rvm reload' | |
# If you do not already have the ruby interpreter installed, install it: | |
∴ rvm install ree-1.8.7-head |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From 7cb51a4207a279f3f91dea854b6d70454a5fdb99 Mon Sep 17 00:00:00 2001 | |
From: Joe ST <[email protected]> | |
Date: Thu, 26 Aug 2010 21:09:32 +0100 | |
Subject: [PATCH] Adds HTTP basic auth | |
Signed-off-by: Joe ST <[email protected]> | |
--- | |
lib/base64.js | 111 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ | |
lib/cradle.js | 15 +++++++- | |
2 files changed, 124 insertions(+), 2 deletions(-) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From 7cb51a4207a279f3f91dea854b6d70454a5fdb99 Mon Sep 17 00:00:00 2001 | |
From: Joe ST <[email protected]> | |
Date: Thu, 26 Aug 2010 21:09:32 +0100 | |
Subject: [PATCH] Adds HTTP basic auth | |
Signed-off-by: Joe ST <[email protected]> | |
--- | |
lib/base64.js | 111 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ | |
lib/cradle.js | 15 +++++++- | |
2 files changed, 124 insertions(+), 2 deletions(-) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
SERVER=https://api.no.de | |
SCRIPT="$0" | |
if [ ${SCRIPT:0:1} == "/" ]; then | |
SCRIPT="$(basename -- "$SCRIPT")" | |
fi | |
main () { | |
cmd=${1-help} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// [~/Documents/code/node/myapp](master)$ ./bin/node -v | |
// => v0.2.1 | |
// [~/Documents/code/node/myapp](master)$ ./bin/express -v | |
// => 1.0.0rc4 | |
/** | |
* Module dependencies. | |
*/ | |
require.paths.unshift(__dirname + '/lib/node'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# download libpng 1.4.x (1.5 didn't work yet with GraphicsMagick 1.3.12) | |
./configure --prefix=$HOME/INST && make && make install | |
# download libjpeg | |
./configure --prefix=$HOME/INST && make && make install | |
# download GraphicsMagick | |
CFLAGS=-I$HOME/INST/include LDFLAGS=-L$HOME/INST/lib ./configure --prefix=$HOME/INST --disable-openmp --disable-openmp-slow && make && make install |