I hereby claim:
- I am ddeville on github.
- I am ddeville (https://keybase.io/ddeville) on keybase.
- I have a public key ASDmES-E7HI6XQtpt82tRK2_gSj34to_05USfnddUUlorwo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| set track_bpm to 270 | |
| set playlist_name to "My Playlist" | |
| tell application "iTunes" | |
| set retrieved_tracks to get tracks where bit rate is track_bpm | |
| set created_playlist to make new user playlist with properties {name:playlist_name} | |
| repeat with current_track in retrieved_tracks | |
| duplicate current_track to created_playlist | |
| end repeat |
| tell application "Safari" | |
| set current_tabs to tabs of front window | |
| repeat with current_tab in current_tabs | |
| set tab_title to name of current_tab | |
| set tab_address to URL of current_tab | |
| tell application "Spillo" | |
| make new bookmark with properties {url:tab_address, title:tab_title} | |
| end tell |
| tell application "Safari" | |
| set current_tab to current tab of front window | |
| set tab_title to name of current_tab | |
| set tab_address to URL of current_tab | |
| tell application "Spillo" | |
| make new bookmark with properties {url:tab_address, title:tab_title} | |
| end tell | |
| end tell |
| tell application "Safari" | |
| set current_tab to current tab of front window | |
| set tab_title to name of current_tab | |
| set tab_address to URL of current_tab | |
| tell application "Spillo" | |
| show create bookmark panel with properties {url:tab_address, title:tab_title} | |
| end tell | |
| end tell |
| #import <unistd.h> | |
| #import <pwd.h> | |
| NSURL *_LLActualHomeDirectoryLocation(void) { | |
| static NSURL *homeDirectoryLocation = nil; | |
| static dispatch_once_t homeDirectoryLocationPredicate = 0; | |
| dispatch_once(&homeDirectoryLocationPredicate, ^ { | |
| uid_t uid = getuid(); | |
| The Young Folks (1940) | |
| Go See Eddie (1940) | |
| The Hang of It (1941) | |
| The Heart of a Broken Story (1941) | |
| The Long Debut of Lois Taggett (1942) | |
| Personal Notes of an Infantryman (1942) | |
| Mrs. Hincher (Unpublished) (1942) | |
| The Last and Best of the Peter Pans (Unpublished) (1942) | |
| The Varioni Brothers (1943) | |
| Both Parties Concerned (1944) |
| // | |
| // main.m | |
| // KVO | |
| // | |
| // Created by Damien DeVille on 10/26/13. | |
| // Copyright (c) 2013 Damien DeVille. All rights reserved. | |
| // | |
| #import <Cocoa/Cocoa.h> |
| // | |
| // main.m | |
| // KVO | |
| // | |
| // Created by Damien DeVille on 10/26/13. | |
| // Copyright (c) 2013 Damien DeVille. All rights reserved. | |
| // | |
| #import <Foundation/Foundation.h> |
| @interface ParentViewController : NSViewController | |
| @property (strong, nonatomic) FirstChildViewController *firstViewController; | |
| @property (strong, nonatomic) SecondChildViewController *secondViewController; | |
| @end | |
| @implementation ParentViewController |