- Bag's Groove (medium swing, sticks)
- Up Jumped Spring (WALTZ, medium)
- Cascade (medium-up swing, sticks)
- History of the Americas (medium-slow swing, sticks)
- Subway Sammiches (medium-up bop, sticks)
- Lullaby of Birdland (medium swing, square-ish, brushes)
- Boplicity (medium swing, brushes)
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
| svn co http://myrepositoryaddress/stuff Project | |
| cd Project | |
| mv trunk ~/development/Project | |
| find . -name ".svn" -type d -exec rm -rf {} ; |
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 <Foundation/Foundation.h> | |
| #import "cocos2d.h" | |
| @protocol JSSpriteTouching | |
| @optional | |
| - (void)actOnTouch; | |
| - (void)actOnTouchWithPosition:(CGPoint)pos; | |
| @end | |
| @interface JSTouchSprite : Sprite { |
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
| @interface SomeClass : SomeControllerClass <JSTutorialDelegate> | |
| // ... | |
| @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
| #define $(obj,method) obj->method(obj) | |
| #define $$(obj,method,args) obj->method(obj,args) |
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
| Jon’s full name: Jonathan Sterling | |
| Jon’s original age: 17 | |
| adding 30 years… | |
| Jon’s new age: 47 | |
| reverting to infancy… | |
| Jon’s new age: 0 | |
| Hi! I’m Jonathan Sterling! Hello World! |
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 <Cocoa/Cocoa.h> | |
| @interface Conversion : NSObject | |
| @end | |
| @interface Conversion (Abstract) | |
| - (NSString *)firstUnitName; | |
| - (NSString *)secondUnitName; | |
| - (double)secondValueForFirstValue:(double)firstValue; |
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
| - (void)didWobble:(NSNotification *)notification; |
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
| NSString *WindowControllerPath = [[NSBundle mainBundle] pathForResource:@"WindowController" | |
| ofType:@"st"]; | |
| NSString *WindowControllerCode = [NSString stringWithFormat:@"[%@]", | |
| [NSString stringWithContentsOfFile:FileWindowControllerPath | |
| encoding:NSUTF8StringEncoding | |
| error:nil]]; | |
| FSBlock *WindowControllerBlock = [WindowControllerCode asBlock]; | |
| [WindowConrollerBlock value]; | |
| Class WindowController = NSClassFromString(@"WindowController"); |
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
| JSClass *Dog = [JSClass newClass:@"Dog" | |
| parent:[NSObject class] | |
| properties:[NSArray arrayWithObjects:@"name",@"breed",nil]]; | |
| [Dog onClassMessage:@selector(dogWithBreed:) | |
| do:^(id Self, NSString *breed) { | |
| id instance = [[Self alloc] init]; | |
| [instance setBreed:breed]; | |
| return [instance autorelease]; | |
| }]; | |
| [Dog addClassProperty:@"kingdom" withValue:@"Animalia"]; |