Skip to content

Instantly share code, notes, and snippets.

View timarnold's full-sized avatar

Tim Arnold timarnold

View GitHub Profile
Game with Javier Soto Bustos
played with Tall Chess
1. d4 d5
2. c4 e6
3. ♘f3 ♞c6
4. ♘c3 ♝b4
5. ♕c2 ♞f6
6. a3 ♝xc3+
7. bxc3 0–0
@timarnold
timarnold / gist:5337684
Last active December 15, 2015 23:08
CADisplayLink setup
CADisplayLink *link = [CADisplayLink displayLinkWithTarget:self selector:@selector(update:)];
link.frameInterval = 60; // every 60 frames = 1 second send the update: message
link.paused = NO; // default is NO
[link addToRunLoop:[NSRunLoop currentRunLoop] forMode:NSRunLoopCommonModes];
- (void)update:(CADisplayLink *)displayLink {
// Do all the things!
}
@timarnold
timarnold / Alfred-Pinboard-Safari.applescript
Last active July 7, 2019 12:37
Inspired by Tim Bueno (http://www.timbueno.com/2012/06/27/pinboard-plus-alfred), this is an AppleScript script for Alfred to save the front-facing tab in Safari (or Chrome) to Pinboard with some tags, and get a success or failure notification from Notification Center.
-- ***********************************
-- Many thanks to Tim Bueno at http://www.timbueno.com/2012/06/27/pinboard-plus-alfred
-- for the inspiration to create this script.
-- ***********************************
on alfred_script(q)
try
-- Set this to be your Pinboard token, found here: https://pinboard.in/settings/password
set token to "MY_PINBOARD_TOKEN"
@timarnold
timarnold / gist:4111071
Created November 19, 2012 14:52
TextExpander Snippet (using AppleScript) to open Wikipedia’s page of a TV show’s episode list using Google
tell application "Safari"
make new document at end of documents
set url of document 1 to "http://www.google.com/search?q=list of episodes wiki %fill:Show Name%&btnI=Im+Feeling+Lucky"
end tell
return " "
@timarnold
timarnold / gist:4111052
Created November 19, 2012 14:50
TextExpander Snippet (using AppleScript) to open Wikipedia’s page of a TV show’s episode list using DuckDuckGo
tell application "Safari"
make new document at end of documents
set url of document 1 to "http://duckduckgo.com/?q=\\list+of+episodes+wiki+%fill:Show Name%"
end tell
return " "
@timarnold
timarnold / gist:3151932
Created July 20, 2012 17:08
TextExpander Snippet (using AppleScript) to open the currently visible page in Safari in Chrome
property theURL : ""
tell application "Safari"
set theURL to URL of current tab of window 1
end tell
if appIsRunning("Google Chrome") then
tell application "Google Chrome"
make new window
set URL of active tab of window 0 to theURL
activate
end tell