VIM Setup
At the command line:
- mv .vimrc .vimrc_backup
- mv .vim .vim_backup
- cd ~
- wget https://raw.github.com/overture8/my-vimrc/master/vimrc && mv vimrc .vimrc
- git clone https://github.com/gmarik/vundle.git ~/.vim/bundle/vundle
- vim
| <Response> | |
| <Speak>Hi, it worked</Speak> | |
| </Response> |
| <Response> | |
| <DTMF>1</DTMF> | |
| <DTMF>W</DTMF> | |
| <DTMF>W</DTMF> | |
| <DTMF>W</DTMF> | |
| <DTMF>W</DTMF> | |
| <DTMF>W</DTMF> | |
| <DTMF>4</DTMF> | |
| </Response> |
| <Response> | |
| <Wait length="4" /> | |
| <DTMF>1</DTMF> | |
| <Wait length="4" /> | |
| <DTMF>3</DTMF> | |
| </Response> |
| <Response> | |
| <DTMF>1</DTMF> | |
| <Wait length="4" /> | |
| <DTMF>3</DTMF> | |
| </Response> |
| <Response> | |
| <DTMF>1</DTMF> | |
| <Wait length="4" /> | |
| <DTMF>3</DTMF> | |
| </Response> |
| http://help.testflightapp.com/customer/portal/articles/829907-can-i-download-a-build-from-testflight-to-my-computer- |
VIM Setup
At the command line:
| # initializers/current_user.js.coffee | |
| Ember.Application.initializer | |
| name: 'currentUser' | |
| initialize: (container) -> | |
| attributes = $('meta[name="current-user"]').attr('content') | |
| if attributes | |
| json = JSON.parse(attributes) |
| <h2>AutoSuggest with AngularJS</h2> | |
| <form ng-app ng-controller="Ctrl"> | |
| <input id="query" list="items" placeholder="Search phrase" /> | |
| <datalist id="items"> | |
| <option ng-repeat="option in dataset" value="{{option[0]}}" /> | |
| </datalist> | |
| <select ng-model="lang"> |