Please see: https://github.com/kevinSuttle/html-meta-tags, thanks for the idea @dandv!
Copied from http://code.lancepollard.com/complete-list-of-html-meta-tags/
| ;; | |
| ;; NS CHEATSHEET | |
| ;; | |
| ;; * :require makes functions available with a namespace prefix | |
| ;; and optionally can refer functions to the current ns. | |
| ;; | |
| ;; * :import refers Java classes to the current namespace. | |
| ;; | |
| ;; * :refer-clojure affects availability of built-in (clojure.core) | |
| ;; functions. |
| directory "tmp" | |
| file "tmp/hello.tmp" => "tmp" do | |
| sh "echo 'Hello' > 'tmp/hello.tmp'" | |
| end | |
| task :default => 'morning:turn_off_alarm' | |
| namespace :morning do | |
| desc "Turn off alarm." |
| #model (idea 100% stolen from ryanb) | |
| def author_tokens=(ids) | |
| ids.gsub!(/CREATE_(.+?)_END/) do | |
| Author.create!(:name => $1).id | |
| end | |
| self.author_ids = ids.split(",") | |
| end | |
| # jquery.tokeninput.js |
| #!/usr/bin/php | |
| <?php | |
| error_reporting(E_ALL); | |
| if (count($argv) <= 1) { | |
| print("usage createMockup src_dir dst_dir images_dir\n"); | |
| print("\tsrc_dir : dir where all bmml file are\n"); | |
| print("\tdst_dir : dir where write all html files\n"); | |
| print("\timages_dir : dir where all export mockup png are (will be copied to the \$dst_dir/images directory)\n"); | |
| exit(1); | |
| } |
| @mixin category-colors($after: false) | |
| @each $category in $categories | |
| @if $after == true | |
| .cat-#{nth($category, 1)}:after | |
| background-color: nth($category, 2) | |
| @else | |
| .cat-#{nth($category, 1)} | |
| background-color: nth($category, 2) |
##Simply annoying Tweets
Annoyingly extended words (4+ of the same letter in a phrase): OOOOHHHHMMMMYYYYGGGGOOOODDDD
([a-z])/1{4}
Tweet w/ just a single hashtag: #omgthissucks
^ *#[^ ]+$
Locate the section for your github remote in the .git/config file. It looks like this:
[remote "origin"]
fetch = +refs/heads/*:refs/remotes/origin/*
url = [email protected]:joyent/node.git
Now add the line fetch = +refs/pull/*/head:refs/remotes/origin/pr/* to this section. Obviously, change the github url to match your project's URL. It ends up looking like this:
| /* | |
| Given the following html | |
| <nav> | |
| <ul> | |
| <li class="home"><a>Home</a></li> | |
| <li class="about"><a>About</a></li> | |
| <li class="blog"><a>Blog</a></li> | |
| <li class="contact"><a>Contact</a></li> | |
| </ul> | |
| </nav> |