This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set output_folder to (choose folder with prompt "Please choose an output directory") | |
set folder_path to POSIX path of output_folder | |
property file_extension : ".mp3" | |
-- property file_extension : ".m4a" (* If format is changed to AAC *) | |
property check_delay : 0.1 (* How often to check for a new track *) | |
property write_delay : 2 (* How long to wait before updating file name *) | |
property stop_delay : 1 (* How long to wait before updating final file after playback stops *) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#import <UIKit/UIKit.h> | |
@interface UIBezierPath (forEachElement) | |
- (void)forEachElement:(void (^)(CGPathElement const *element))block; | |
@end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// SKShapeNode+Utility.m | |
// Dynamics | |
// | |
// Created by Jonathan Wight on 6/14/13. | |
// Copyright (c) 2013 toxicsoftware. All rights reserved. | |
// | |
#import "SKShapeNode+Utility.h" |