Recent releases have been pre-built using cross-compilers and this script and are downloadable below.
If you have found these packages useful, give me a shout out on twitter: @adammw
| ######################### | |
| # .gitignore file for Xcode4 and Xcode5 Source projects | |
| # | |
| # Apple bugs, waiting for Apple to fix/respond: | |
| # | |
| # 15564624 - what does the xccheckout file in Xcode5 do? Where's the documentation? | |
| # | |
| # Version 2.6 | |
| # For latest version, see: http://stackoverflow.com/questions/49478/git-ignore-file-for-xcode-projects | |
| # |
| { | |
| var separator = ','; | |
| } | |
| start | |
| = comma | |
| comma | |
| = & { return separator = ','; } sv:sv { return sv; } |
Recent releases have been pre-built using cross-compilers and this script and are downloadable below.
If you have found these packages useful, give me a shout out on twitter: @adammw
| var http = require('http') | |
| , fs = require('fs') | |
| , PORT = process.argv[2] || 8080 | |
| , HOST = process.argv[3] || '127.0.0.1'; | |
| http.createServer(function (req, res) { | |
| if (req.url == '/events') { | |
| res.writeHead(200, { 'Content-Type' : 'text/event-stream' | |
| , 'Cache-Control' : 'no-cache' |
| #!/bin/bash | |
| MEM=1024 | |
| LAN=eth0 | |
| BRIDGE=virtbr | |
| ARCH=x86_64 # i386 | |
| #BIOS="-bios OVMF.fd" # to emulate an UEFI netboot | |
| # supported wifi interfaces can be bridged if you set 4addr mode first: | |
| # iw dev $LAN set 4addr on |
| license: gpl-3.0 | |
| redirect: https://observablehq.com/@d3/margin-convention |
| # Usage: redis-cli publish message hello | |
| require 'sinatra' | |
| require 'redis' | |
| conns = [] | |
| get '/' do | |
| erb :index | |
| end |
cd ~/Library/Application\ Support/Sublime\ Text\ 2/Packages
git clone git://github.com/jashkenas/coffee-script-tmbundle CoffeeScript
git clone https://github.com/miksago/jade-tmbundle.git Jade
git clone https://github.com/LearnBoost/stylus.git Stylus
| 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" |