Ok, so the basic anatomy of a GitHub compare link is:
https://github.com/USER/REPO/compare/REF1...REF2
-module(t). | |
-export([start/0, go/0, analyze/0, server/0]). | |
start() -> | |
percept:profile("test.dat", {t, go, []}, [procs]). | |
go() -> | |
Led = led:start(1), | |
Led1 = led:start(1), |
--- | |
#### | |
#### THIS IS OLD AND OUTDATED | |
#### LIKE, ANSIBLE 1.0 OLD. | |
#### | |
#### PROBABLY HIT UP https://docs.ansible.com MY DUDES | |
#### | |
#### IF IT BREAKS I'M JUST SOME GUY WITH | |
#### A DOG, OK, SORRY | |
#### |
L1 cache reference ......................... 0.5 ns
Branch mispredict ............................ 5 ns
L2 cache reference ........................... 7 ns
Mutex lock/unlock ........................... 25 ns
Main memory reference ...................... 100 ns
Compress 1K bytes with Zippy ............. 3,000 ns = 3 µs
Send 2K bytes over 1 Gbps network ....... 20,000 ns = 20 µs
SSD random read ........................ 150,000 ns = 150 µs
Read 1 MB sequentially from memory ..... 250,000 ns = 250 µs
echo "deb http://backports.debian.org/debian-backports squeeze-backports main contrib" >> /etc/apt/sources.list | |
echo "deb http://ftp.de.debian.org/debian sid main" >> /etc/apt/sources.list | |
apt-get update | |
apt-get upgrade | |
apt-get install libevent-dev autoconf pkg-config gcc g++ libncurses5-dev make | |
mkdir tmux | |
cd tmux | |
wget "http://iterm2.googlecode.com/files/tmux-for-iTerm2-20120203.tar.gz" | |
tar -zxf tmux-for-iTerm2-20120203.tar.gz | |
cd tmux-for-iTerm2-20120203/ |
var parser = document.createElement('a'); | |
parser.href = "http://example.com:3000/pathname/?search=test#hash"; | |
parser.protocol; // => "http:" | |
parser.hostname; // => "example.com" | |
parser.port; // => "3000" | |
parser.pathname; // => "/pathname/" | |
parser.search; // => "?search=test" | |
parser.hash; // => "#hash" | |
parser.host; // => "example.com:3000" |
(ns proc | |
(:import [java.lang ProcessBuilder]) | |
(:use [clojure.java.io :only [reader writer]])) | |
(defn spawn [& args] | |
(let [process (-> (ProcessBuilder. args) | |
(.start))] | |
{:out (-> process | |
(.getInputStream) | |
(reader)) |
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>name</key> | |
<string>Solarized (dark)</string> | |
<key>settings</key> | |
<array> | |
<dict> | |
<key>settings</key> |
-module(rr_db, [Server, PhotoRoot]). | |
-define(MIME_TYPE, "application/json"). | |
-compile(export_all). | |
init() -> | |
inets:start(), | |
inets:start(httpc, [{profile, database}]). | |
reset() -> |