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
H-arts-iMac:nodetest fcodello$ sudo curl http://npmjs.org/install.sh | sh | |
% Total % Received % Xferd Average Speed Time Time Time Current | |
Dload Upload Total Spent Left Speed | |
100 7031 100 7031 0 0 9198 0 --:--:-- --:--:-- --:--:-- 27790 | |
tar=/usr/bin/tar | |
version: | |
bsdtar 2.8.3 - libarchive 2.8.3 | |
Installing without make. This may fail. | |
fetching: http://registry.npmjs.org/npm/-/npm-1.0.99.tgz | |
0.4.12 |
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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN"><html> | |
<head> | |
<meta name="Status: Mark 7" content="2012"> | |
<meta http-equiv="Content-Type" content="text/html;charset=ISO-8859-1" > | |
<title>Status: Mark 7</title> | |
</head> | |
<body bgcolor="#000000"> | |
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
javascript:(function(){var a=document.createElement("script");a.src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js";a.onload=a.onreadystatechange=function(){$("<div/>",{html:"Resize window",id:"debug"}).appendTo("body");var a=$("#debug");a.css({"z-index":"9999",position:"absolute",top:"5px",right:"5px",padding:"5px",border:"2px #d8d8dc solid",color:"#2068a5",font:"16px Arial, sans-serif","font-weight":"bold",background:"rgba(220,220,220,.85)"});$(window).resize(function(){var b=Math.floor($(window).width()),c=Math.floor($(window).height());a.html(b+"x"+c)})};document.body.appendChild(a)})(); |
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
➜ mirror git:(master) ✗ sudo npm cache clean && sudo rm -rf /usr/local/lib/node_modules/jitsu | |
npm ERR! Error: ENOTEMPTY, rmdir '/Users/fcodello/.npm/npm/1.1.0/package/node_modules/fstream/examples/path/to' | |
npm ERR! You may report this log at: | |
npm ERR! <http://github.com/isaacs/npm/issues> | |
npm ERR! or email it to: | |
npm ERR! <[email protected]> | |
npm ERR! | |
npm ERR! System Darwin 11.2.0 | |
npm ERR! command "node" "/usr/local/bin/npm" "cache" "clean" |
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
{ | |
"name": "rakeup", | |
"version": "0.0.1", | |
"author": "Fabrizio Codello", | |
"engines": { | |
"node": "0.6.x" | |
}, | |
"private": true, | |
"dependencies": { | |
"http-agent": "0.1.x", |
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
JNLPSigningException[Convalida della firma del file di avvio non riuscita. La versione firmata non corrisponde alla versione scaricata.] | |
at com.sun.javaws.jnl.LaunchDesc.checkSigning(Unknown Source) | |
at com.sun.javaws.LaunchDownload.checkSignedLaunchDescHelper(Unknown Source) | |
at com.sun.javaws.LaunchDownload.checkSignedLaunchDesc(Unknown Source) | |
at com.sun.javaws.Launcher.prepareResources(Unknown Source) | |
at com.sun.javaws.Launcher.prepareAllResources(Unknown Source) | |
at com.sun.javaws.Launcher.prepareToLaunch(Unknown Source) | |
at com.sun.javaws.Launcher.prepareToLaunch(Unknown Source) | |
at com.sun.javaws.Launcher.launch(Unknown Source) | |
at com.sun.javaws.Main.launchApp(Unknown Source) |
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
➜ tweet-a-table git:(master) ✗ sudo npm install | |
npm http GET https://registry.npmjs.org/jquery | |
npm http GET https://registry.npmjs.org/jade | |
npm http GET https://registry.npmjs.org/socket.io | |
npm http GET https://registry.npmjs.org/express | |
npm http 304 https://registry.npmjs.org/jquery | |
npm http 304 https://registry.npmjs.org/jade | |
npm http 304 https://registry.npmjs.org/express | |
npm http 304 https://registry.npmjs.org/socket.io | |
npm http GET https://registry.npmjs.org/mime/1.2.4 |
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
/*! | |
* jQuery JavaScript Library v1.7.2 | |
* http://jquery.com/ | |
* | |
* Copyright 2011, John Resig | |
* Dual licensed under the MIT or GPL Version 2 licenses. | |
* http://jquery.org/license | |
* | |
* Includes Sizzle.js | |
* http://sizzlejs.com/ |
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
javascript:(function(){function read(url){var r=new XMLHttpRequest();r.open('HEAD',url,false);r.send(null);return r.getAllResponseHeaders();}alert(read(window.location))})(); |
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
$ sudo apt-get install git-core python libssl-dev build-essential | |
$ git clone git://github.com/joyent/node.git node && cd node | |
$ git checkout v0.8.6 (or check the latest stable version on https://github.com/joyent/node/tags) | |
$ ./configure | |
$ make (it will take some time) | |
$ sudo make install | |
Do a check with: | |
$ node -v |