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
| <IfModule mod_rewrite.c> | |
| RewriteEngine On | |
| #for arguments | |
| RewriteRule ^([^/]*)/([^/]*)/([^/]*)$ ZTAPI.php?APIKey=$1&Action=$2&Args=$3 [L] | |
| #for no arguments | |
| RewriteRule ^([^/]*)/([^/]*)$ ZTAPI.php?APIKey=$1&Action=$2 [L] |
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
| <?php | |
| /** | |
| * | |
| * | |
| * @author Jack Perry, Zach Thayer | |
| * @version 2.0 | |
| * @copyright Yoshimi Robotics. All rights reserved. | |
| * @package YRAPI | |
| **/ |
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
| boo | |
| Zachry-Thayers-MacBook-Pro:~ zachthayer$ rm gist | |
| Zachry-Thayers-MacBook-Pro:~ zachthayer$ Ok,©git config --global github.user | |
| -bash: Ok,©git: command not found | |
| Zachry-Thayers-MacBook-Pro:~ zachthayer$ git config --global github.user | |
| Zachry-Thayers-MacBook-Pro:~ zachthayer$ git config --global github.user Nub | |
| Zachry-Thayers-MacBook-Pro:~ zachthayer$ git config --global gith |
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
| -v, --version Print version | |
| -h, --help Display this screen | |
| Zachry-Thayers-MacBook-Pro:~ zachthayer$ echo 'boo' > gist | |
| Zachry-Thayers-MacBook-Pro:~ zachthayer$ cat gist | |
| boo | |
| Zachry-Thayers-MacBook-Pro:~ zachthayer$ rm gist | |
| Zachry-Thayers-MacBook-Pro:~ zachthayer$ Ok,©git config --global github.user | |
| -bash: Ok,©git: command not found | |
| Zachry-Thayers-MacBook-Pro:~ zachthayer$ git config --global github.user | |
| Zachry-Thayers-MacBook-Pro:~ zachthayer$ git config --global github.user Nub |
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
| n Print manual | |
| -v, --version Print version | |
| -h, --help Display this screen | |
| Zachry-Thayers-MacBook-Pro:~ zachthayer$ echo 'boo' > gist | |
| Zachry-Thayers-MacBook-Pro:~ zachthayer$ cat gist | |
| boo | |
| Zachry-Thayers-MacBook-Pro:~ zachthayer$ rm gist | |
| Zachry-Thayers-MacBook-Pro:~ zachthayer$ Ok,©git config --global github.user | |
| -bash: Ok,©git: command not found | |
| Zachry-Thayers-MacBook-Pro:~ zachthayer$ git config --global github.user |
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
| cBook-Pro:~ zachthayer$ cat gist | |
| boo | |
| Zachry-Thayers-MacBook-Pro:~ zachthayer$ rm gist | |
| Zachry-Thayers-MacBook-Pro:~ zachthayer$ Ok,©git config --global github.user | |
| -bash: Ok,©git: command not found | |
| Zachry-Thayers-MacBook-Pro:~ zachthayer$ git config --global github.user | |
| Zachry-Thayers-MacBook-Pro:~ zachthayer$ git config --global github.user Nub | |
| Zachry-Thayers-MacBook-Pro:~ zachthayer$ git config --global github.user | |
| Nub | |
| Zachry-Thayers-MacBook-Pro:~ zachthayer$ git config --global user.email "zachthayer@gmail.com" |
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
| if(stocks) | |
| { | |
| NSMutableDictionary *serialStocks = [NSMutableDictionary dictionary]; | |
| for (NSString *key in stocks) { | |
| NSMutableArray *serialPurchases = [NSMutableArray array]; | |
| NSArray *item = [stocks objectForKey:key]; | |
| if ([item isKindOfClass:[NSArray class]]) { |
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
| static void *volatile _dlManagerInstance = nil; | |
| + (DownloadManager *) sharedInstance { | |
| while (!_dlManagerInstance) { | |
| DownloadManager *temp = [[self alloc] init]; | |
| if(!OSAtomicCompareAndSwapPtrBarrier(0x0, temp, &_dlManagerInstance)) { | |
| [temp release]; | |
| } | |
| } | |
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
| // | |
| // BWPagedView.m | |
| // BiggerWallet | |
| // | |
| // Created by Zachry Thayer on 9/30/11. | |
| // Copyright 2011 Penguins With Mustaches. All rights reserved. | |
| // | |
| #import "BWPagedView.h" |
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
| // | |
| // BWPagedView.m | |
| // BiggerWallet | |
| // | |
| // Created by Zachry Thayer on 9/30/11. | |
| // Copyright Zachry Thayer. All rights reserved. | |
| // | |
| #import "BWPagedView.h" |