git clone https://github.com/joyent/node.git
cd node/
git checkout v0.4.5 # or any other version you'd like
./configure --debug
make install
This file contains hidden or 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
// Author: http://getsatisfaction.com/people/natxopedreira | |
// Source: http://getsatisfaction.com/openzoom/topics/implementing_gesture_controller | |
package org.openzoom.flash.viewport.controllers | |
{ | |
import flash.display.Graphics; | |
import flash.display.Sprite; | |
import flash.events.Event; | |
import flash.events.MouseEvent; |
This file contains hidden or 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
/* | |
* Title Caps | |
* | |
* Ported to JavaScript By John Resig - http://ejohn.org/ - 21 May 2008 | |
* Original by John Gruber - http://daringfireball.net/ - 10 May 2008 | |
* License: http://www.opensource.org/licenses/mit-license.php | |
*/ | |
(function(){ | |
var small = "(a|an|and|as|at|but|by|en|for|if|in|of|on|or|the|to|v[.]?|via|vs[.]?)"; |
This file contains hidden or 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
// cURL: http://php.net/manual/en/book.curl.php | |
// cURL Options: http://www.php.net/manual/en/function.curl-setopt.php | |
// @param $url URL of the request, e.g. https://www.sandbox.paypal.com/cgi-bin/webscr | |
// @param $data URL encoded request data as array, e.g. $data = array('cmd' => '_notify-validate'); | |
function urlopen($url, $data) | |
{ | |
$curl_handler = curl_init(); | |
$options = array(CURLOPT_URL => $url, | |
CURLOPT_FAILONERROR => true, | |
CURLOPT_RETURNTRANSFER => true, |
NewerOlder