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
| var dorms = | |
| ["Claremont", | |
| "548 W 113th", | |
| "600 West 113th", | |
| "Broadway", | |
| "Brownstones", | |
| "Carman", | |
| "East Campus", | |
| "Furnald", | |
| "Harmony", |
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
| <style type="text/css"> | |
| @font-face { | |
| font-family: "Computer Modern"; | |
| src: url('http://mirrors.ctan.org/fonts/cm-unicode/fonts/otf/cmunss.otf'); | |
| } | |
| @font-face { | |
| font-family: "Computer Modern"; | |
| src: url('http://mirrors.ctan.org/fonts/cm-unicode/fonts/otf/cmunsx.otf'); | |
| font-weight: bold; | |
| } |
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
| http://snipt.net/sac2171/ | |
| I like github gists, but snipt looks better when embedded. |
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: David Bamber <dbamber@gmail.com> | |
| * http://bmbr.co | |
| * | |
| * Usage: node test.js -u <googleuser> -p <googlepass> | |
| * node test.js -u <googleuser> -p <googlepass> -regex -url /feeds/default/private/full | |
| * | |
| * Optional Fags: | |
| * -url [url]: requests a different uri from docs api, defaults to /feeds/default/private/full/-/table | |
| * -regex: applies a regex to try and sanitize output |
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 [ preds, acc, decvals ] = verifier( folds, images, output ) | |
| %VERIFIER Reads images and classifies based on gender | |
| % Read certain facial features (eyes, nose, mouth, cheek) | |
| % Train features using regression techniques in order to determine if | |
| % male or female | |
| vl_setup() | |
| % Read the folds | |
| q = read_lfw_folds(folds); |
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
| javascript: (function(){ | |
| var today = new Date(); | |
| var day = today.getDate(); | |
| var month = today.getMonth() + 1; | |
| /* January starts with zero */ | |
| var year = today.getFullYear(); | |
| var thisDate = month + '/' + day + '/' + year; | |
| alert(thisDate); | |
| /* Trying to write to the document is actually unneccessarily complicated. document.write(thisDate)*/ |
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
| /sbin/ifconfig | grep inet |
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
| // ==UserScript== | |
| // @name PissApOff | |
| // @namespace http://use.i.E.your.homepage/ | |
| // @version 0.1 | |
| // @description enter something useful | |
| // @include http://fifa1404.herokuapp.com/view/1 | |
| // @include http://fifa1404.herokuapp.com/ | |
| // @copyright 2012+, You | |
| // ==/UserScript== |
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
| When using Noir, you must install the newer version of leiningen, you may place it on path within the /bin/ folder. | |
| verify correct usage with which lein. | |
| https://raw.github.com/technomancy/leiningen/stable/bin/lein |
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
| These two symbols look correct in my terminal, before I was seeing > and < | |
| " My own hack for the seperator | |
| let g:airline_left_sep = '' | |
| let g:airline_right_sep = '' |
OlderNewer