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 any object | |
[[NSUserDefaults standardUserDefaults] setObject:@"this is some string" forKey:@"test"]; | |
[[NSUserDefaults standardUserDefaults] synchronize]; | |
// retrieve object | |
[[NSUserDefaults standardUserDefaults] objectForKey:@"test"]; |
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
AVCaptureDevice *device = [AVCaptureDevice defaultDeviceWithMediaType:AVMediaTypeVideo]; | |
if ([device hasTorch]) { | |
[device lockForConfiguration:nil]; | |
[device setTorchMode:AVCaptureTorchModeOn]; // AVCaptureTorchModeOff | |
[device unlockForConfiguration]; | |
} |
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
UIView *testView = [[UIView alloc] initWithFrame:CGRectMake(0.0f, 0.0f, 100.0f, 100.0f)]; | |
[UIView animateWithDuration:1.0f | |
animations:^{ | |
testView.transform = CGAffineTransformTranslate(testView.transform, 100.0f, 0.0f); | |
} | |
completion:^(BOOL finished){ | |
if (finished) { | |
// Do some magic after the animation finishes | |
} |
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
graph sample { | |
layout=neato | |
overlap=false | |
splines=true | |
tailclip=false | |
headclip=false | |
A -- I | |
A -- J | |
A -- B | |
A -- 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
15090792207824914689299302111293390910 | |
62195380455342808744906805393239021982 | |
76096933698024536798268794263645478726 | |
83669245350769490272343848448863138581 | |
90732512097952169660801374000419937573 | |
99227861950690058087894766853355604843 | |
106231480191160623286572966105843398721 | |
119825583003234372579297569500108407259 | |
133700140834102615346582278965882197399 | |
140391624674997358476491961477360973567 |
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
{ | |
"total":1, | |
"page":1, | |
"limit":1, | |
"artists":[ | |
{ | |
"id":"172032211301443675536147328123616447779", | |
"name":"I haz a band", | |
"avatar":"http://example.com/avatar.jpg", | |
"bio":"Some totally awesome description right here", |
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
#!/bin/bash | |
echo " " | |
echo " =======================================" | |
echo " = Welcome to KENTAURUS. =" | |
echo " =======================================" | |
echo | |
btime=`who -b | sed -e 's/[^A-Z]*//'` | |
utime=`uptime | sed -e 's/ [0-9:]* up />/' -e 's/,.*//'` | |
echo " ==== BOOT TIME ==== ==== UPTIME ====" | |
echo " "$btime" " $utime |
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
var obj = new Object(); | |
var exampleWindow = Titanium.UI.createWindow({ | |
url:'example.js', | |
title:"I'm an example", | |
backgroundColor:'red', | |
someVar:obj | |
}); |
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
var NavigationController = require('NavigationController').NavigationController; | |
var nav = new NavigationController(); | |
var tmpWindow = Titanium.UI.createWindow({ | |
backgroundColor:'white', | |
title:'1st Window' | |
}); | |
var tmpButton = Titanium.UI.createButton({ | |
title:'Touch me' |
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
exports.NavigationController = function() { | |
this.windowStack = []; | |
}; | |
exports.NavigationController.prototype.open = function(/*Titanium.UI.Window*/windowToOpen) { | |
Titanium.API.info('nav OPEN triggered, old windowStack:' + this.windowStack.length); | |
this.windowStack.push(windowToOpen); | |
Titanium.API.info('nav OPEN triggered, new windowStack:' + this.windowStack.length); | |
var that = this; |