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
| Installing DNS_SD libraries: | |
| ---------------------------- | |
| garrett@li284-151:~/hook.io$ sudo apt-get install libavahi-compat-libdnssd-dev | |
| Reading package lists... Done | |
| Building dependency tree | |
| Reading state information... Done | |
| The following extra packages will be installed: |
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
| garrett@li284-151:~/mdns/agnat-node_mdns-d979f84$ node-waf -v configure build | |
| Setting srcdir to : /home/garrett/mdns/agnat-node_mdns-d979f84 | |
| Checking for program g++ or c++ : /usr/bin/g++ | |
| Checking for program cpp : /usr/bin/cpp | |
| Checking for program ar : /usr/bin/ar | |
| Checking for program ranlib : /usr/bin/ranlib | |
| Checking for g++ : ok | |
| Checking for node path : not found | |
| Checking for node prefix : ok /usr/local | |
| Checking for header dns_sd.h : 13:04:38 runner system command -> ['/usr/bin/g++', '-g', '-I/usr/local/include', '../test.cpp', '-c', '-o', 'default/test_1.o'] |
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
| Linking in the hook.io folder: | |
| ----------------------------- | |
| garrett@li284-151:~/hook.io$ sudo npm link | |
| npm WARN eyes@0.1.7 dependencies field should be hash of <name>:<version-range> pairs | |
| npm http GET https://github.com/substack/socket.io-client/tarball/master | |
| npm http 200 https://github.com/substack/socket.io-client/tarball/master | |
| /usr/local/bin/hookio -> /usr/local/lib/node_modules/hook.io/bin/hookio | |
| /usr/local/lib/node_modules/hook.io -> /home/garrett/hook.io |
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
| for (var f in HTTP) { | |
| typeof HTTP[f] === 'function' && (this.HTTP[f] = HTTP[f].bind(this)); | |
| } | |
| for (var member in provider) { | |
| if (typeof provider[member] === 'function') { | |
| if (member === 'HTTP' || member === 'provider') { | |
| throw new Error('API object or function name `' + member + '` is reserved'); | |
| } |
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
| set nocompatible " be iMproved | |
| filetype off " required! | |
| set rtp+=~/.vim/bundle/vundle/ | |
| call vundle#rc() | |
| " let Vungle manage Vundle | |
| " required! | |
| Bundle 'gmarik/vundle' |
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
| #Non-blocking channel | |
| set nb "data.txt" | |
| set data [open $nb r] | |
| fconfigure $data -blocking 0 | |
| puts "$nb [fconfigure $data]" | |
| #Blocking channel | |
| set bl "data2.txt" | |
| set data2 [open $bl r] | |
| puts "$bl [fconfigure $data2]" |
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <script type="text/javascript" src="src/d3/d3.js"></script> | |
| <script type="text/javascript" src="src/d3/d3.geom.js"></script> | |
| <script type="text/javascript" src="src/d3/d3.layout.js"></script> | |
| </head> | |
| <body> | |
| <div id="viz1"></div> | |
| <div id="viz2"></div> |
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
| function Event(kind, method, url, data) { | |
| this.kind = kind; | |
| this.method = method; | |
| this.url = url; | |
| this.data = data; | |
| this.milliseconds = new Date().getTime(); | |
| }; | |
| /* | |
| function Event( obj ) { |
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
| gw@airy ~/C/HackerClubProjectOne> jitsu deploy | |
| info: Welcome to Nodejitsu garrettwilkin | |
| info: jitsu v0.9.8 | |
| info: It worked if it ends with Nodejitsu ok | |
| info: Executing command deploy | |
| warn: There is no package.json file in /Users/gw/Code/HackerClubProjectOne | |
| warn: Creating package.json at /Users/gw/Code/HackerClubProjectOne/package.json | |
| help: | |
| help: A package.json stores meta-data about an app | |
| help: In order to continue we'll need to gather some information about the app |
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
| I wrote this to standardize all the meta data that i wanted in my documents: | |
| function Shlock(kind, method, url, data) { | |
| this.kind = kind; | |
| this.method = method; | |
| this.url = url; | |
| this.data = data; | |
| this.time = new Date().toJSON(); | |
| }; |
OlderNewer