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
| brew install qemu | |
| cd /usr/local/Cellar/qemu/1.7.0/bin | |
| wget http://xecdesign.com/downloads/linux-qemu/kernel-qemu | |
| ./qemu-system-arm -kernel kernel-qemu -cpu arm1176 -m 256 -M versatilepb -no-reboot -serial stdio -append "root=/dev/sda2 panic=1 rootfstype=ext4 rw" -hda ~/Downloads/Pidora-2014-R2-1/Pidora-2014-R2-1.img |
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 -IL "http://www.nytimes.com/2014/05/11/opinion/sunday/kristof-whats-so-scary-about-smart-girls.html?smid=tw-share&smv1" | grep HTTP | |
| HTTP/1.1 303 See Other | |
| HTTP/1.1 302 Found | |
| HTTP/1.1 303 See Other | |
| HTTP/1.1 302 Found | |
| HTTP/1.1 303 See Other | |
| HTTP/1.1 302 Found | |
| HTTP/1.1 303 See Other | |
| HTTP/1.1 302 Found | |
| HTTP/1.1 303 See Other |
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
| You appear to be advocating a new: | |
| You appear to believe that: | |
| Unfortunately, your idea (has/lacks): | |
| The following philosophical objections apply: |
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 ryan = function() { | |
| console.log('hey girl'); | |
| }; | |
| for ( var x = 0; x < 10; x += 1 ) { | |
| (function(z) { var prev = ryan; | |
| ryan = function() { | |
| console.log('hey guy', z); | |
| prev(); | |
| } }(x)); | |
| } |
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
| application:open-your-keymap | |
| application:open-your-stylesheet | |
| autocomplete:attach | |
| autoflow:reflow-paragraph | |
| bookmarks:clear-bookmarks | |
| bookmarks:jump-to-next-bookmark | |
| bookmarks:jump-to-previous-bookmark | |
| bookmarks:toggle-bookmark | |
| bookmarks:view-all | |
| check:correct-misspelling |
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
| # | |
| # Initialize the stuff | |
| # | |
| # We build the status bar item menu | |
| def setupMenu | |
| menu = NSMenu.new | |
| menu.initWithTitle 'FooApp' | |
| mi = NSMenuItem.new | |
| mi.title = 'Hellow from MacRuby!' | |
| mi.action = 'sayHello:' |
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
| It has a body |
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
| # Artsy Editorial | |
| # | |
| # Get Page stats from google analytics | |
| GA = require('googleanalytics') | |
| util = require('util') | |
| require('date-utils'); | |
| module.exports = (robot) -> | |
| robot.hear /stats (.*)http:\/\/artsy.net\/(.*)/i, (msg) -> |
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
| // Disable bold. | |
| term_.prefs_.set('enable-bold', false) | |
| // Use this for Solarized Dark | |
| term_.prefs_.set('background-color', "#002b36"); | |
| term_.prefs_.set('foreground-color', "#839496"); | |
| term_.prefs_.set('color-palette-overrides', [ | |
| '#073642', | |
| '#dc322f', |
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
| { | |
| "Taylor": "likely-male", | |
| "Ingrid": "female", | |
| "Alex": "male", | |
| "Gregory": "male", | |
| "John": "male", | |
| "Colleen": "female", | |
| "Ross": "male", | |
| "Natasha": "female", |