To create an anchor to a heading in github flavored markdown.
Add - characters between each word in the heading and wrap the value in parens (#some-markdown-heading) so your link should look like so:
[create an anchor](#anchors-in-markdown)
My user settings:
{| #! /path/to/node | |
| var haibu = require('/path/to/haibu'); | |
| var client = new haibu.drone.Client(); | |
| process.stdin.resume(); | |
| process.stdin.on('data', function(data){ | |
| var package = JSON.parse(data.toString()); |
Based on installing Ubuntu 10.04 (lucid) and cloning the live environment (calling local environment dev.jsbin.com)
Add core packages:
sudo apt-get update
sudo apt-get install libpcre3-dev build-essential libssl-dev git-core varnish sendmail
sudo su -
sendmailconfig
cd /opt/
| #!/bin/sh | |
| ## current 1 liner | |
| # wget http://url.com/ubuntu-setup.sh && chmod 700 ubuntu-setup.sh && ./ubuntu-setup.sh | |
| # use raw url from github ;] | |
| echo "Choose setup: user, setup, or mail" | |
| read choice | |
| if [ $choice = user ] |
| @media only screen and (min-width: 320px) { | |
| /* Small screen, non-retina */ | |
| } | |
| @media | |
| only screen and (-webkit-min-device-pixel-ratio: 2) and (min-width: 320px), | |
| only screen and ( min--moz-device-pixel-ratio: 2) and (min-width: 320px), | |
| only screen and ( -o-min-device-pixel-ratio: 2/1) and (min-width: 320px), |
| !!! 5 | |
| //if lt IE 7 | |
| <html class="no-js lt-ie9 lt-ie8 lt-ie7"> | |
| //if IE 7 | |
| <html class="no-js lt-ie9 lt-ie8"> | |
| //if IE 8 | |
| <html class="no-js lt-ie9"> | |
| //[if gt IE 8]><! | |
| html(class='no-js') | |
| //<![endif] |
ANSI Escape Codes are special characters which can be used to control formatting, colors or other output preferences in a text terminal. Escape Codes are non-printing code and will not appear in the output directly.
Note: \033[39m is used set the color back to the terminal defult