- Mac OS X Mountain Lion (10.8.2)
- Homebrew
- readline
- rbenv
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> | |
<html lang="en" id="facebook" class="no_js"> | |
<head><meta charset="utf-8" /><script>function envFlush(a){function b(c){for(var d in a)c[d]=a[d];}if(window.requireLazy){requireLazy(['Env'],b);}else{Env=window.Env||{};b(Env);}} | |
envFlush({"user":"0","locale":"en_US","method":"GET","svn_rev":539342,"vip":"69.171.247.80","static_base":"http:\/\/static.ak.fbcdn.net\/","www_base":"http:\/\/www.facebook.com\/","rep_lag":2,"fb_dtsg":"AQDM19gw","ajaxpipe_token":"AXjcQXC0BvABCfxF","lhsh":"JAQEQyaoL","tracking_domain":"http:\/\/pixel.facebook.com","retry_ajax_on_network_error":"1","html5_audio":"1","fbid_emoticons":"1"});</script><script>envFlush({"eagleEyeConfig":{"seed":"3NbA"}});CavalryLogger=false;window._script_path = "\/profile_page_timeline.php";</script><noscript> <meta http-equiv="refresh" content="0; URL=/SHOandCO?_fb_noscript=1" /> </noscript> | |
<meta name="robots" content="noodp, noydir" /><meta name="description" content=" Facebook is a social utility that connects people with friends and other |
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
/* | |
* Copyright 2013 The Android Open Source Project | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"); | |
* you may not use this file except in compliance with the License. | |
* You may obtain a copy of the License at | |
* | |
* http://www.apache.org/licenses/LICENSE-2.0 | |
* | |
* Unless required by applicable law or agreed to in writing, software |
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
var five, board, servo, blink; | |
five = require("johnny-five"); | |
board = new five.Board(); | |
board.on("ready", function() { | |
servo = new five.Servo(10); |
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
var BusBoy = require('busboy'), | |
fs = require('fs'), | |
path = require('path'); | |
var RE_MIME = /^(?:multipart\/.+)|(?:application\/x-www-form-urlencoded)$/i; | |
// options will have limit and uploadDir. | |
exports = module.exports = function(options){ | |
options = options || {}; | |
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
<html> | |
<head> | |
<title>React slideshow test</title> | |
<script src="http://fb.me/react-with-addons-0.13.1.js"></script> | |
<script src="http://fb.me/JSXTransformer-0.13.1.js"></script> | |
<style> | |
* { | |
box-sizing: border-box; | |
padding: 0; | |
margin: 0; |
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
<html> | |
<head> | |
<title>Cropper example</title> | |
<script src="https://code.jquery.com/jquery-2.1.4.min.js"></script> | |
<link href="https://cdnjs.cloudflare.com/ajax/libs/cropper/0.9.1/cropper.min.css" rel="stylesheet"> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/cropper/0.9.1/cropper.min.js"></script> | |
</head> | |
<body> | |
<div class="container"> |
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
/* | |
* Copyright (C) 2014 Twitter Inc. | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"); | |
* you may not use this file except in compliance with the License. | |
* You may obtain a copy of the License at | |
* | |
* http://www.apache.org/licenses/LICENSE-2.0 | |
* | |
* Unless required by applicable law or agreed to in writing, software |
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
" Fast saving | |
nmap <leader>w :w!<cr> | |
vnoremap <silent> gv :call VisualSearch('gv')<CR> | |
map <leader>g :vimgrep // **/*<left><left><left><left><left><left><left> | |
function! GoogleSearch() | |
let searchterm = getreg("g") | |
silent! exec "silent! !open \"http://google.com/search?q=" . searchterm . "\" &" | |
endfunction |
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
var i; | |
for (i=0; i<5; i+=1){ | |
setTimeout( | |
function(){ console.log(i); }, | |
100 | |
); | |
} |
OlderNewer