I hereby claim:
- I am oisin on github.
- I am oisin (https://keybase.io/oisin) on keybase.
- I have a public key whose fingerprint is 5A6B 3BEF B837 764F EAC4 FD6E 0D97 5065 C08C F6CF
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| # Simple tester for Converser SDK feedback form manipulation. No network connections | |
| # made. | |
| #import "CIOSecondViewController.h" | |
| @interface CIOSecondViewController () | |
| @property (strong,nonatomic) VGConversationEngine *converser; | |
| @end | |
| @implementation CIOSecondViewController |
| $ mongo host:port/db | |
| MongoDB shell version: 2.2.3 | |
| connecting to: host:port/db | |
| > db.auth('myuserid','mypassword') | |
| 1 | |
| > db.system.indexes.find() | |
| { "v" : 1, "key" : { "_id" : 1 }, "ns" : "db.system.users", "name" : "_id_" } | |
| { "v" : 1, "key" : { "_id" : 1 }, "ns" : "db.administrators", "name" : "_id_" } | |
| { "v" : 1, "key" : { "_id" : 1 }, "ns" : db.apps", "name" : "_id_" } | |
| { "v" : 1, "key" : { "app_id" : 1 }, "unique" : true, "ns" : "db.apps", "name" : "app_id_1" } |
| // Android apps include Converser initialization and subscription | |
| // as part of an activity. In the code snippet below, it shows useful | |
| // places to put the code so that it is initialised and subscribes at | |
| // the right time. | |
| public class YourActivity extends Activity { | |
| @Override | |
| public void onCreate(Bundle savedInstanceState) { | |
| // When this activity is created, initialize Converser with the correct key and endpoint | |
| // this doesn't actually connect to the server, it just sets it up ready to go for the |
Locate the section for your github remote in the .git/config file. It looks like this:
[remote "origin"]
fetch = +refs/heads/*:refs/remotes/origin/*
url = git@github.com:joyent/node.git
Now add the line fetch = +refs/pull/*/head:refs/remotes/origin/pr/* to this section. Obviously, change the github url to match your project's URL. It ends up looking like this:
| #!/bin/bash | |
| for branch in `git branch -a | grep remotes | grep -v HEAD | grep -v master`; do | |
| git branch --track ${branch##*/} $branch | |
| done |
| /.* verbose-ireland \[(.*)\] (\d+.\d+.\d+.\d+) .* REST.GET.OBJECT \d+_TheVerbosePodcast_-_Episode(\d+).mp3 .* - (\d+) (\d+) (\d+) (\d+) "(.*)" "(.*)".*/ |
| gem install do_postgres -- --with-pgsql-server-dir=/Applications/Postgres.app/Contents/MacOS --with-pgsql-server-include=/Applications/Postgres.app/Contents/MacOS/include/server |
| source 'https://rubygems.org' | |
| gem 'bunny' | |
| gem 'json' |