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
| Speaker slides/video: | |
| http://fluentconf.com/fluent2013/public/schedule/proceedings | |
| Flickr: | |
| http://www.flickr.com/photos/oreillyconf/sets/72157633777364533/ | |
| Epic Citadel Demo: | |
| http://www.unrealengine.com/html5/ | |
| http://www.youtube.com/watch?feature=player_embedded&v=BV32Cs_CMqo |
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 | |
| LASTNAME="" | |
| LASTNODE="" | |
| for node in `knife node list` | |
| do | |
| case `knife node show $node -a chef_environment` in | |
| "chef_environment: vagrant") |
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
| $chefserver = "http://chef.thirdwave.local:4000" | |
| $home = File.expand_path("~") | |
| $user = ENV["USER"] | |
| $time = (Time.now.getutc).to_i | |
| $i = 0 | |
| $j = 0 | |
| $k = 0 | |
| def getNode | |
| box = $boxes[$i] |
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
| //Source: http://davidjhinson.wordpress.com/2010/11/13/stop-the-bouncy-uiwebviews/ | |
| // Stop the bounces | |
| UIScrollView* sv = nil; | |
| for(UIView* v in myWebView.subviews){ | |
| if([v isKindOfClass:[UIScrollView class] ]){ | |
| sv = (UIScrollView*) v; | |
| sv.scrollEnabled = YES; | |
| sv.bounces = NO; | |
| } |