start new:
tmux
start new with session name:
tmux new -s myname
I just had to set up Jenkins to use GitHub. My notes (to myself, mostly):
For setting up Jenkins to build GitHub projects. This assumes some ability to manage Jenkins, use the command line, set up a utility LDAP account, etc. Please share or improve this Gist as needed.
'use strict'; | |
module.exports = function(grunt) { | |
// load all grunt tasks matching the `grunt-*` pattern | |
// Ref. https://npmjs.org/package/load-grunt-tasks | |
require('load-grunt-tasks')(grunt); | |
grunt.initConfig({ | |
// Fontello Icons | |
// Note: This is one time running task, so run grunt after update assets/fontello/config.json file | |
// Ref. https://npmjs.org/package/grunt-fontello | |
fontello: { |
#!/bin/bash | |
# WordPress Plugin pre-commit hook | |
set -e | |
message="Checking staged changes..." | |
git_status_egrep='^[MARC].+' | |
for i; do | |
case "$i" |
{ | |
"receipt": { | |
"type": "android-playstore", | |
"id": "12345678901234567890.1234567890123456", | |
"purchaseToken": "purchase token goes here", | |
"receipt": "{"orderId":"12345678901234567890.1234567890123456","packageName":"com.example.app","productId":"com.example.app.product","purchaseTime":1417113074914,"purchaseState":0,"purchaseToken":"purchase token goes here"}", | |
"signature": "signature data goes here" | |
} | |
} |