Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View overture8's full-sized avatar

Phil McClure overture8

  • Stora
  • Belfast, Northern Ireland
View GitHub Profile
<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-
@overture8
overture8 / vim_setup.md
Last active December 19, 2015 23:08
VIM Setup
@overture8
overture8 / vim_demo.md
Last active December 19, 2015 23:08
VIM demo

Introduction

  • What is vim (also known as VI)? - An Editor! Like Sublime, TextMate etc.

  • Show of hands for people who use vim:-

    • Every day? (Kind of expected)
    • Ocassionally? (First part boring)
  • Never? (Comfortable at the command-line?)

@overture8
overture8 / current_user.js.coffee
Last active December 19, 2015 08:38
Ember devise auth
# 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)
@overture8
overture8 / index.html
Created March 21, 2013 10:09
A CodePen by Sergej Müller. AutoSuggest with AngularJS - Supports Chrome, Firefox, IE 10.
<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">