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
Show hidden characters
{ | |
// Gleitz's JSHint Configuration File | |
// See http://jshint.com/docs/ for more details | |
"maxerr": 50, // {int} Maximum error before stopping | |
// Enforcing | |
"bitwise": true, // true: Prohibit bitwise operators (&, |, ^, etc.) | |
"camelcase": false, // true: Identifiers must be in camelCase | |
"curly": true, // true: Require {} for every new block or scope |
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
{ | |
// Gleitz's JSHint Configuration File | |
// See http://jshint.com/docs/ for more details | |
"maxerr": 50, // {int} Maximum error before stopping | |
// Enforcing | |
"bitwise": true, // true: Prohibit bitwise operators (&, |, ^, etc.) | |
"camelcase": false, // true: Identifiers must be in camelCase | |
"curly": true, // true: Require {} for every new block or scope |
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
{ | |
// Gleitz's JSHint Configuration File | |
// See http://jshint.com/docs/ for more details | |
"maxerr": 50, // {int} Maximum error before stopping | |
// Enforcing | |
"bitwise": true, // true: Prohibit bitwise operators (&, |, ^, etc.) | |
"camelcase": false, // true: Identifiers must be in camelCase | |
"curly": true, // true: Require {} for every new block or scope |
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
{ | |
// Gleitz's JSHint Configuration File | |
// See http://jshint.com/docs/ for more details | |
"maxerr": 50, // {int} Maximum error before stopping | |
// Enforcing | |
"bitwise": true, // true: Prohibit bitwise operators (&, |, ^, etc.) | |
"camelcase": false, // true: Identifiers must be in camelCase | |
"curly": true, // true: Require {} for every new block or scope |
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
# e.g. python code_reader.py ~/Dropbox/Shared/Ruse/algorithm\ auction/algorithms/basic\ code/ | |
import json | |
import os | |
import sys | |
def calculate_info(path): | |
num_lines = 0 | |
line_length_counts = [] |
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
export PATH=/usr/local/bin:$PATH:/opt/local/bin:/usr/local/sbin:/Users/bgleitzman/android-sdk/tools:/Users/bgleitzman/android-sdk/platform-tools:/usr/local/share/npm/bin | |
export MANPATH=$MANPATH:/opt/local/share/man | |
export INFOPATH=$INFOPATH:/opt/local/share/info | |
export JAVA_OPTS="-Xmx1024m -XX:MaxPermSize=512m" | |
export MAVEN_OPTS="-Xmx3072m -XX:MaxPermSize=256m" | |
export NODE_PATH="/usr/local/lib/node_modules" | |
export WORKON_HOME="~/.virtualenvs" | |
export EDITOR="/usr/local/bin/edit" | |
export GIT_EDITOR="emacsclient -t" | |
#export MACOSX_DEPLOYMENT_TARGET=10.8 |
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
; Logo Language Interpreter for the Apple-II-Plus Personal Microcomputer | |
; Written and developed by Stephen L. Hain, Patrick G. Sobalvarro, and | |
; Leigh L. Klotz with the M.I.T. Logo Group under the supervision of Hal | |
; Abelson at the Massachusetts Institute of Technology. | |
; Property of the M.I.T. Logo Laboratory, | |
; 545 Technology Square, Cambridge, MA 02139. | |
; Copyright (C) 1980 Massachusetts Institute of Technology | |
; All rights reserved. |
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
The Creator's List | |
100 questions to guide any creative project | |
by George Zisiadis | |
1. What are you doing? | |
2. Why are you doing this? | |
3. What are you trying to communicate to people? | |
4. What inspired this idea originally? | |
5. How long have you been thinking about this? | |
6. What else has been done that's similar to your project? |
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
/*jshint multistr: true */ | |
var d3 = require('d3'); | |
var insertCSS = require('insert-css') | |
var css = ".link {\ | |
fill: none;\ | |
stroke: #666;\ | |
stroke-width: 1.5px;\ | |
}\ |
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
// Reloading modules from the repl in Node.js | |
// Benjamin Gleitzman ([email protected]) | |
// | |
// Inspired by Ben Barkay | |
// http://stackoverflow.com/a/14801711/305414 | |
// | |
// Usage: `node reload.js` | |
// You can load the module as usual | |
// var mymodule = require('./mymodule') | |
// And the reload it when needed |