Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| #!/usr/bin/ruby | |
| # Markdown to Evernote, RubyCocoa edition | |
| # by Brian Gernhardt | |
| # Adapted from Martin Kopichke's "Markdown to Evernote" service | |
| # https://gist.github.com/kopischke/1009149 | |
| # Which was adapted from Brett Terpstra’s original | |
| # http://brettterpstra.com/a-better-os-x-system-service-for-evernote-notes-with-multimarkdown/ |
| /* Better styles for embedding GitHub Gists */ | |
| .gist{font-size:13px;line-height:18px;margin-bottom:20px;width:100%} | |
| .gist pre{font-family:Menlo,Monaco,'Bitstream Vera Sans Mono','Courier New',monospace !important} | |
| .gist-meta{font-family:Helvetica,Arial,sans-serif;font-size:13px !important} | |
| .gist-meta a{color:#26a !important;text-decoration:none} | |
| .gist-meta a:hover{color:#0e4071 !important} |
| #!/usr/bin/ruby | |
| # Markdown to Evernote, RubyCocoa edition | |
| # by Brian Gernhardt | |
| # Adapted from Martin Kopichke's "Markdown to Evernote" service | |
| # https://gist.github.com/kopischke/1009149 | |
| # Which was adapted from Brett Terpstra’s original | |
| # http://brettterpstra.com/a-better-os-x-system-service-for-evernote-notes-with-multimarkdown/ |
| [user] | |
| name = Joe User | |
| email = [email protected] | |
| [branch] | |
| autosetupmerge = true | |
| [branch "master"] | |
| remote = origin | |
| merge = refs/heads/master |
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| git remote add --track master upstream git://github.com/upstreamname/projectname.git |
| # configuration for osx clipboard support | |
| set-option -g default-command "reattach-to-user-namespace -l sh" |
| #!/bin/bash | |
| # Description of script | |
| # Required program(s) | |
| req_progs=(prog1 prog2) | |
| for p in ${req_progs[@]}; do | |
| hash "$p" 2>&- || \ | |
| { echo >&2 " Required program \"$p\" not installed."; exit 1; } | |
| done |
| #!/bin/bash | |
| # Description of script | |
| # Display usage if no parameters given | |
| if [[ -z "$@" ]]; then | |
| echo " ${0##*/} <input> - description" | |
| exit | |
| fi | |
| # Required program(s) |