Please publicly post the following Gist, and name it keybase.md:
I hereby claim:
- I am rretsiem on github.
- I am renem (https://keybase.io/renem) on keybase.
- I have a public key whose fingerprint is 2F38 99DD B4EC 5C77 0AD8 CB56 4C0F 570A 8D0A C384
Please publicly post the following Gist, and name it keybase.md:
I hereby claim:
| {% capture description %}{% if page.description %}{{ page.description }}{% else %}{{ content | raw_content }}{% endif %}{% endcapture %} | |
| <meta name="description" content="{{ description | strip_html | condense_spaces | truncate:150 }}" /> | |
| {% capture keywords %}{% if page.keywords %}{{ page.keywords }}{% elsif site.keywords %}{{ site.keywords }}{% endif %}{% endcapture %} | |
| <meta name="keywords" content="{{ keywords | strip_html | condense_spaces }}" /> |
| on alfred_script(q) | |
| try | |
| set token to "<API TOKEN can be found on pinboard.in/settings/password>" | |
| set inputt to q as text | |
| set tmp to splitString(inputt as text, " ") | |
| set AppleScript's text item delimiters to "+" | |
| set q to tmp as string | |
| set AppleScript's text item delimiters to "" |
| -- | |
| -- open currently open URL in Safari in Chrome | |
| -- | |
| property theURL : "" | |
| tell application "Safari" | |
| set theURL to URL of current tab of window 1 | |
| end tell | |
| tell application "Google Chrome" to activate |
| #! /bin/bash | |
| # convert scriptogr.am markdown to Octopress/Jekyll markdown | |
| if [ -z "$1" ] | |
| then | |
| echo "No input files supplied" | |
| else | |
| if [ ! -f $1 ] | |
| then |