Get Homebrew installed on your mac if you don't already have it
Install highlight. "brew install highlight". (This brings down Lua and Boost as well)
Get Homebrew installed on your mac if you don't already have it
Install highlight. "brew install highlight". (This brings down Lua and Boost as well)
/* | |
* This work is free. You can redistribute it and/or modify it under the | |
* terms of the Do What The Fuck You Want To Public License, Version 2, | |
* as published by Sam Hocevar. See the COPYING file for more details. | |
*/ | |
/* | |
* Easing Functions - inspired from http://gizma.com/easing/ | |
* only considering the t value for the range [0, 1] => [0, 1] | |
*/ | |
EasingFunctions = { |
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
Version 2, December 2004 | |
Copyright (C) 2011 YOUR_NAME_HERE <YOUR_URL_HERE> | |
Everyone is permitted to copy and distribute verbatim or modified | |
copies of this license document, and changing it is allowed as long | |
as the name is changed. | |
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE |
function debugAccess(obj, prop, debugGet){ | |
var origValue = obj[prop]; | |
Object.defineProperty(obj, prop, { | |
get: function () { | |
if ( debugGet ) | |
debugger; | |
return origValue; | |
}, |
GitHub supports several lightweight markup languages for documentation; the most popular ones (generally, not just at GitHub) are Markdown and reStructuredText. Markdown is sometimes considered easier to use, and is often preferred when the purpose is simply to generate HTML. On the other hand, reStructuredText is more extensible and powerful, with native support (not just embedded HTML) for tables, as well as things like automatic generation of tables of contents.
οΌΌγγ γγγγ γγγγγγγοΏ€γγγγγγ γ / | |
γ οΌΌγγγγγ γγγγγγγοΏ€γγγγγ γ / | |
γγγγγγγγγγγγγοΌοΏ£οΏ£γγ½, | |
γγγγγγγγγγγγ/γγγγγ γ ',γγγγγγ/γγ γγοΌΏ/οΌΌοΌοΌΌ/οΌΌοΌ|οΌΏ | |
γγγ οΌΌγγγ οΎ//, {0}γ /Β¨`γ½γ{0}γ,οΎγ½γ γ /γ γγ οΌΌγγ γγγγγγγοΌ | |
γγγγγοΌΌ οΌγγγο½γγ γ½._.γγγγ', γγοΌΌγγγ γγ οΌγγ IE γγΌγ«οΌγγοΌ | |
γγγγγοΌ οΌβγοΎγγγο½γΌ'β²γγ ' βοΌΌ οΌΌγγγγοΌγ γγγγγγγγοΌΌ | |
γγγγγ(γγοΏ£οΏ£βγγγγγγγγγγβοΏ£γοΌΏ)γγγοΏ£|οΌοΌΌ/οΌΌ/οΌΌ/οΏ£ | |
γγγγγγο½οΏ£οΏ£ο½γ½γγγγγγγγγγγ/Β΄οΏ£ | |
γγγγγγγγγγγ|γγγγγγγγγ γ | γ |
#!/usr/bin/env sh | |
## | |
# This is script with usefull tips taken from: | |
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
# | |
# install it: | |
# curl -sL https://raw.github.com/gist/2108403/hack.sh | sh | |
# |
<!-- copy this to YOUR_THEME.tmTheme--> | |
<dict> | |
<key>name</key> | |
<string>diff: deleted</string> | |
<key>scope</key> | |
<string>markup.deleted</string> | |
<key>settings</key> | |
<dict> | |
<key>background</key> | |
<string>#EAE3CA</string> |
body { | |
font-family: Helvetica, arial, sans-serif; | |
font-size: 14px; | |
line-height: 1.6; | |
padding-top: 10px; | |
padding-bottom: 10px; | |
background-color: white; | |
padding: 30px; } | |
body > *:first-child { |