Description: Setup GitHub Pages "gh-pages" branch and "master" branch as subfolders of a parent project folder ("grandmaster").
Author: Chris Jacob @_chrisjacob
Tutorial (Gist): https://gist.github.com/833223
| // everyone's new favorite closure pattern: | |
| (function(window,document,undefined){ ... })(this,this.document); | |
| // when minified: | |
| (function(w,d,u){ ... })(this,this.document); | |
| // which means all uses of window/document/undefined inside the closure | |
| // will be single-lettered, so big gains in minification. | |
| // it also will speed up scope chain traversal a tiny tiny little bit. |
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>Cross-browser kerning-pairs & ligatures</title> | |
| <style> | |
| body { font-family: sans-serif; background: #f4f3f3; color: rgba(40, 30, 0, 1); width: 500px; margin: 80px auto; padding: 0px; } | |
| a { color: rgba(15, 10, 0, 0.8); text-decoration: none; border-bottom: 1px solid; padding: 1px 1px 0px; -webkit-transition: background 1s ease; } | |
| a:hover { background: rgba(0, 220, 220, 0.2); } | |
| p, li { line-height: 1.5; padding: 0em 1em 0em 0em; margin: 0em 0em 0.5em; } |
Description: Setup GitHub Pages "gh-pages" branch and "master" branch as subfolders of a parent project folder ("grandmaster").
Author: Chris Jacob @_chrisjacob
Tutorial (Gist): https://gist.github.com/833223
| // Reorder, rename, and document variables at some point | |
| var sys = require("sys"), | |
| twitter = require("ntwitter"), | |
| mongoose = require("mongoose"), | |
| db_user, | |
| db_pass, | |
| db_url, | |
| db_port, | |
| db_name, | |
| coll, |
| // ==UserScript== | |
| // @name Use Markdown, sometimes, in your HTML. | |
| // @author Paul Irish <http://paulirish.com/> | |
| // @link http://git.io/data-markdown | |
| // @match * | |
| // ==/UserScript== | |
| // If you're not using this as a userscript just delete from this line up. It's cool, homey. |
| /* Centered heading with rules */ | |
| h1 { | |
| position: relative; | |
| overflow: hidden; | |
| white-space: nowrap; | |
| text-align: center; | |
| text-overflow: ellipsis; | |
| font: 1.6em/1.1 Georgia; | |
| padding: .2em 0; |
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>Media Query Multiple Columns</title> | |
| <meta name="viewport" content="width=device-width, intial-scale=1"> | |
| <style> | |
| @media all and (min-width: 40em) and (min-height: 36em) { | |
| [role="main"] { | |
| -webkit-column-count: 2; |
| <ul class="tags"> | |
| <?php foreach(str::split($article->tags()) as $tag): ?> | |
| <li><a href="<?php echo url('blog/tag:' . urlencode($tag)) ?>"></a></li> | |
| <?php endforeach ?> | |
| </ul> |
| ~(box(?:-[0-9]+)?\.(?:jpe?g|png))~ |
| #!/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 | |
| # |