I hereby claim:
- I am rosskarchner on github.
- I am rossk (https://keybase.io/rossk) on keybase.
- I have a public key whose fingerprint is D9E5 3B8E E0C9 C749 D45F B992 1EAE 2EB7 A38E D0D9
To claim this, I am signing this object:
<D-i> | |
fc | |
asccv uhfgbbrxm7 rxxxxxrrrrrmmmmmr v bbb |
I hereby claim:
To claim this, I am signing this object:
if (event.keyCode == 8) { | |
pass1.value = pass1.value.substring(0, pass1.value.length - 1); | |
pass2.value = pass2.value.substring(0, pass2.value.length - 1); | |
if (pass2.value.length == 0) pass1.value = ''; | |
} else if (event.keyCode != 13) { | |
pass1.value += pass2.value.replace(/(^[\s]*)|([\s]*$)/g, ''); | |
if (pass2.value.length == 1) pass2.value = ' '; | |
else if (pass2.value.length == 4) pass2.value = ' '; | |
else if (pass2.value.length == 6) pass2.value = ' '; | |
else if (pass2.value.length == 8) pass2.value = ' '; |
import adnpy | |
import sys | |
# Set the default access token for API calls. | |
adnpy.api.add_authorization_token('AQAAAAAACqdtFdqwsJmFbaDL036aIM8RDgQKvbDhXBfFJRMl0IQkurrGfBROJQ5Qx0mEf0oYYdnecAyEZR29jgkEPUTaPes_zg') | |
while True: | |
try: | |
text = raw_input('> ') | |
if text: |
function start() { | |
Foxmarks.BookmarkManager.removeSelectedNode() | |
setTimeout(start, 2000); | |
} | |
start(); |
BEGIN:VCALENDAR | |
VERSION:2.0 | |
PRODID:-//Meetup//RemoteApi//EN | |
CALSCALE:GREGORIAN | |
METHOD:PUBLISH | |
X-ORIGINAL-URL:http://www.meetup.com/DevOpsDC/events/ical/DevOpsDC/ | |
X-WR-CALNAME:Events - DevOpsDC | |
BEGIN:VTIMEZONE | |
TZID:America/New_York | |
TZURL:http://tzurl.org/zoneinfo-outlook/America/New_York |
import mechanize, codecs | |
from BeautifulSoup import BeautifulSoup, Comment | |
ci_login_url="https://auth.cooksillustrated.com/" | |
recipe_search_root="http://www.cooksillustrated.com/search/results.asp" | |
initial_query='?query=+&filters=&sort=&filters=type:Recipe' | |
br = mechanize.Browser() | |
br.open(ci_login_url) |
on run {input, parameters} | |
tell application "Google Chrome" | |
set myURL to URL of active tab of window 1 | |
set myTitle to title of active tab of window 1 | |
end tell | |
tell application "Pukka" | |
set post URL to myURL |
#! /usr/bin/python | |
#requires: openmeta command line tool, openmeta python library | |
from glob import glob | |
from plistlib import readPlistFromString | |
import shlex, subprocess, openmeta | |
get_xml="plutil -convert xml1 -o - %s" |
on run {input, parameters} | |
tell application "Google Chrome" | |
set myURL to URL of active tab of window 1 | |
set myTitle to title of active tab of window 1 | |
end tell | |
tell application "Paparazzi!" | |
capture myURL min size {1024, 728} |