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
| <object class="IBClassDescriber" key="IBDocument.Classes"> | |
| <array class="NSMutableArray" key="referencedPartialClassDescriptions"> | |
| <object class="IBPartialClassDescription"> | |
| <string key="className">SampleWelcomeViewController</string> | |
| <string key="superclassName">UIViewController</string> | |
| <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
| <string key="majorKey">IBProjectSource</string> | |
| <string key="minorKey">./Classes/SampleWelcomeViewController.h</string> | |
| </object> | |
| </object> |
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
| javascript:(function()%7B%24(%22%5Bid*%3D'modal_nux_wrapper'%5D%22).hide()%7D)() |
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 Model : NSObject | |
| @property (nonatomic, copy) NSString *name; | |
| @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
| # Set prefix to C-\ | |
| unbind-key C-b | |
| set -g prefix C-a | |
| # Use vim bindings | |
| set-window-option -g mode-keys vi | |
| bind-key -t vi-copy 'v' begin-selection | |
| bind-key -t vi-copy 'y' copy-selection | |
| #this allows us to double tape for the begining of the line |
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
| window.FooPageJavaScript = class FooPageJavaScript | |
| constructor: -> | |
| @setupPage() | |
| @bindEvents() |
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
| task :default => [:run_prefixr] | |
| task :run_prefixr do | |
| puts "Running Prefixr" | |
| Dir.glob('css/*.css').each do |file| | |
| puts "Copying #{file} to #{file}.old" | |
| `cp #{file} #{file}.old` | |
| puts "Prefixr-fying #{file}" | |
| `curl -sSd css='#{File.read(file)}' http://prefixr.com/api/index.php > #{file}` | |
| end |