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
| Xcode | |
| Oh My ZSH | |
| RVM | |
| Janus | |
| Homebrew | |
| MacVim | |
| KeyRemap4MacBook |
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
| Computer Hardware | |
| KVM Switcher | |
| 4-port DualView Mini DisplayPort KVMP Switch with Peripheral Sharing | |
| http://www.iogear.com/press/presskit/ces2012/GCS1924/GCS1924_Datasheet.pdf | |
| DP to MDP Cable | |
| Mini Displayport Female to Displayport Male Adapter Cable | |
| http://estore.circuitassembly.com/products/Mini-Displayport-Female-to-Displayport-Male-Adapter-Cable.html | |
| http://www.displayport.org/faq/ |
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
| Ember.js API Docs | |
| http://ember-docs.herokuapp.com/ | |
| Advanced Ember.js Bindings | |
| http://code418.com/blog/2012/03/26/advanced-emberjs-bindings/ | |
| Ember.js observables. So you like to watch! | |
| http://www.andymatthews.net/read/2012/03/27/Ember.js-observables.-So-you-like-to-watch! | |
| Ember.js Live Collections |
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
| Loading ["spec"] | |
| ***************************************************************** | |
| DEPRECATION WARNING: you are using a deprecated constant that will | |
| be removed from a future version of RSpec. | |
| /Users/codeofficer/.rvm/gems/ruby-1.9.3-p125@worldbrain/gems/activesupport-3.2.1/lib/active_support/dependencies.rb:251:in `require' | |
| * Rspec is deprecated. | |
| * RSpec is the new top-level module in RSpec-2 | |
| ***************************************************************** |
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
| <div class="input datetime optional"> | |
| <label class="datetime optional" for="service_request_requested_on_1i">Requested on</label> | |
| <select class="datetime optional" id="service_request_requested_on_1i" name="service_request[requested_on(1i)]"> | |
| <option selected="selected" value="2012"> | |
| 2012 | |
| </option> | |
| </select> |
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
| www | |
| ├── app.css | |
| ├── app.js | |
| ├── index.html | |
| ├── test.css | |
| ├── test.html | |
| ├── test.js | |
| ├── vendor.css | |
| └── vendor.js |
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
| ### GIT-PROMPT.SH CONFIG | |
| ### | |
| ### lines commented-out with single '#' are default values | |
| ### lines commented-out with double '##' are examples | |
| ### | |
| ### NOTE: this is bash syntax - no spaces around "=" | |
| ########################################################### |
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
| http://cubiq.org/remove-onclick-delay-on-webkit-for-iphone | |
| http://forum.jquery.com/topic/usability-touch-feedback-too-slow | |
| http://arandomurl.com/2011/03/16/coding-for-the-mobile-web.html | |
| http://floatlearning.com/2011/03/developing-better-phonegap-apps/ | |
| google fastbutton |
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
| # | |
| # Some helper methods | |
| # | |
| app = | |
| activePage: -> | |
| $(".ui-page-active") | |
| reapplyStyles: (el) -> |
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
| =Navigating= | |
| visit('/projects') | |
| visit(post_comments_path(post)) | |
| =Clicking links and buttons= | |
| click_link('id-of-link') | |
| click_link('Link Text') | |
| click_button('Save') | |
| click('Link Text') # Click either a link or a button | |
| click('Button Value') |