Skip to content

Instantly share code, notes, and snippets.

@H4ad
Created January 15, 2023 06:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save H4ad/0c8b3816ccf3de1506095f7257f62816 to your computer and use it in GitHub Desktop.
Save H4ad/0c8b3816ccf3de1506095f7257f62816 to your computer and use it in GitHub Desktop.
Object Hash Performance Analysis

This file was used to perform a performance analysis on object-hash.

To run, copy all files to a folder, initilize the NPM with npm init, then install:

npm i --save benchmark object-hash
const Benchmark = require('benchmark');
const suite = new Benchmark.Suite();
const valueOne = 1;
const valueTwo = undefined;
suite.add('!!valueOne', function () {
const v = !!valueOne;
});
suite.add('valueOne ?:', function () {
const v = valueOne ? true : false;
});
suite.add('!!valueTwo', function () {
const v = !!valueTwo;
});
suite.add('valueTwo ?:', function () {
const v = valueTwo ? true : false;
});
const results = [];
suite
// add listeners
.on('cycle', function (event) {
results.push(String(event.target));
})
.on('complete', function () {
results.forEach(console.log);
console.log('Fastest is ' + this.filter('fastest').map('name'));
})
.run({
async: false,
});
const Benchmark = require('benchmark');
const suite = new Benchmark.Suite();
const date = new Date();
suite.add('toJSON', function () {
const v = date.toJSON();
});
suite.add('valueOf', function () {
const v = date.valueOf();
});
suite.add('+date', function () {
const v = +date;
});
const results = [];
suite
// add listeners
.on('cycle', function (event) {
results.push(String(event.target));
})
.on('complete', function () {
results.forEach(console.log);
console.log('Fastest is ' + this.filter('fastest').map('name'));
})
.run({
async: false,
});
const Benchmark = require('benchmark');
const { sort } = require('fast-sort');
const suite = new Benchmark.Suite();
const testArray = ['test3', 'test4', 'test', 'test7', 'test4'];
suite.add('testArray.sort()', function () {
const v = testArray.sort();
});
suite.add('fastSort(testArray)', function () {
const v = sort(testArray).asc();
});
const results = [];
suite
// add listeners
.on('cycle', function (event) {
results.push(String(event.target));
})
.on('complete', function () {
results.forEach(console.log);
console.log('Fastest is ' + this.filter('fastest').map('name'));
})
.run({
async: false,
});
const Benchmark = require('benchmark');
const suite = new Benchmark.Suite();
const testArray = ['test', 'test3', 'test4', 'test7', 'test4'];
const testIntArray = [1, 2, 3, 5, 6];
const testAnyArray = [1, 'sdsd', 3, { batata: true }, 6];
const testHoleyArray = [1, undefined, 6, 5, 8];
suite.add('forEach: string', function () {
var self = this;
testArray.forEach(function(entry) {
const v = entry;
const c = self;
});
});
suite.add('forEach: int', function () {
var self = this;
testIntArray.forEach(function(entry) {
const v = entry;
const c = self;
});
});
suite.add('forEach: any', function () {
var self = this;
testAnyArray.forEach(function(entry) {
const v = entry;
const c = self;
});
});
suite.add('forEach: holey', function () {
var self = this;
testHoleyArray.forEach(function(entry) {
const v = entry;
const c = self;
});
});
suite.add('for: string', function () {
for (const entry of testArray) {
const v = entry;
}
});
suite.add('for: int', function () {
for (const entry of testIntArray) {
const v = entry;
}
});
suite.add('for: any', function () {
for (const entry of testAnyArray) {
const v = entry;
}
});
suite.add('for: holey', function () {
for (const entry of testHoleyArray) {
const v = entry;
}
});
const results = [];
suite
// add listeners
.on('cycle', function (event) {
results.push(String(event.target));
})
.on('complete', function () {
results.forEach(console.log);
console.log('Fastest is ' + this.filter('fastest').map('name'));
})
.run({
async: false,
});
const Benchmark = require('benchmark');
const suite = new Benchmark.Suite();
const endNativeFunc = '[native code] }';
const endNativeFuncLength = endNativeFunc.length;
const func = 'function batata() { [native code] }';
suite.add('oldRegex', function () {
var exp = /^function\s+\w*\s*\(\s*\)\s*{\s+\[native code\]\s+}$/i;
var v = exp.exec(func) != null;
});
suite.add('endsWith', function () {
const v = func.endsWith(endNativeFunc);
});
suite.add('slice', function () {
const v = func.slice(-endNativeFuncLength) === endNativeFunc;
});
suite.add('for', function () {
let r = true;
let stringLength = func.length;
for (let i = stringLength; i >= 0; i--)
if (func[i] !== endNativeFunc[endNativeFuncLength + stringLength - i]) {
r = false;
break;
}
});
const results = [];
suite
// add listeners
.on('cycle', function (event) {
results.push(String(event.target));
})
.on('complete', function () {
results.forEach(console.log);
console.log('Fastest is ' + this.filter('fastest').map('name'));
})
.run({
async: false,
});
const Benchmark = require('benchmark');
const suite = new Benchmark.Suite();
const testObjOld = { _string: () => {}, _string2: () => {}, _string3: () => {} };
const testObjNew = { string: () => {}, string2: () => {}, string3: () => {} };
const testKey = 'string';
const testKeys = ['string', 'string2', 'string3'];
suite.add('oldObjectAccess', function () {
testObjOld['_' + testKey]();
});
suite.add('newObjectAccess', function () {
testObjNew[testKey]();
});
suite.add('random: oldObjectAccess', function () {
const randomKey = Math.floor(Math.random() * 3);
testObjOld['_' + testKeys[randomKey]]();
});
suite.add('random: newObjectAccess', function () {
const randomKey = Math.floor(Math.random() * 3);
testObjNew[testKeys[randomKey]]();
});
const results = [];
suite
// add listeners
.on('cycle', function (event) {
results.push(String(event.target));
})
.on('complete', function () {
results.forEach(console.log);
console.log('Fastest is ' + this.filter('fastest').map('name'));
})
.run({
async: false,
});
const Benchmark = require('benchmark');
const suite = new Benchmark.Suite();
const testObj = { batata: true };
const objString = Object.prototype.toString.call(testObj);
suite.add('oldRegex', function () {
var pattern = (/\[object (.*)\]/i);
var objType = pattern.exec(objString);
if (!objType) { // object type did not match [object ...]
objType = 'unknown:[' + objString + ']';
} else {
objType = objType[1]; // take only the class name
}
});
suite.add('slice', function () {
var objType = '';
var objectLength = objString.length;
// '[object a]'.length === 10, the minimum
if (objectLength < 10)
objType = 'unknown:[' + objString + ']';
else
objType = objString.slice(8, objectLength - 1)
});
const results = [];
suite
// add listeners
.on('cycle', function (event) {
results.push(String(event.target));
})
.on('complete', function () {
results.forEach(console.log);
console.log('Fastest is ' + this.filter('fastest').map('name'));
})
.run({
async: false,
});
const Benchmark = require('benchmark');
const suite = new Benchmark.Suite();
const testArray = ['test', 'test3'];
suite.add('splice', function () {
const array = [...testArray];
array.splice(0, 0, 'prototype', '__proto__', 'constructor');
});
suite.add('unshift', function () {
const array = [...testArray];
array.unshift('prototype', '__proto__', 'constructor');
});
suite.add('Array.prototype.push.apply', function () {
let array = [...testArray];
const prototypes = ['prototype', '__proto__', 'constructor'];
array = Array.prototype.push.apply(prototypes, array);
});
const results = [];
suite
// add listeners
.on('cycle', function (event) {
results.push(String(event.target));
})
.on('complete', function () {
results.forEach(console.log);
console.log('Fastest is ' + this.filter('fastest').map('name'));
})
.run({
async: false,
});
const Benchmark = require('benchmark');
const suite = new Benchmark.Suite();
const testString = 'test';
const boolVariable = true;
const numberVariable = Math.random();
const urlVariable = new URL('https://google.com');
const bigIntVariable = BigInt('123123');
suite.add('with toString', function () {
let r = '';
r += 'string:' + testString.length + ':';
r += testString.toString();
});
suite.add('without toString', function () {
let r = '';
r += 'string:' + testString.length + ':' + testString;
});
suite.add('bool: with toString', function () {
var b = 'bool: ' + boolVariable.toString()
});
suite.add('bool: without toString', function () {
var b = 'bool: ' + boolVariable
});
suite.add('number: with toString', function () {
var b = 'number: ' + numberVariable.toString()
});
suite.add('number: without toString', function () {
var b = 'number: ' + numberVariable
});
suite.add('url: with toString', function () {
var b = 'url: ' + urlVariable.toString()
});
suite.add('url: without toString', function () {
var b = 'url: ' + urlVariable
});
suite.add('bigint: with toString', function () {
var b = 'bigint: ' + bigIntVariable.toString()
});
suite.add('bigint: without toString', function () {
var b = 'bigint: ' + bigIntVariable
});
const results = [];
suite
// add listeners
.on('cycle', function (event) {
results.push(String(event.target));
})
.on('complete', function () {
results.forEach(console.log);
console.log('Fastest is ' + this.filter('fastest').map('name'));
})
.run({
async: false,
});
const Benchmark = require('benchmark');
const largeJson = require('./large-file');
const objectHash = require('object-hash');
const fasterObjectHash = require('./faster-object-hash');
function generateItems(num) {
return new Array(num).fill(0).map(() => {
return {
'propNum': Math.random(),
'propBool': Math.random() > 0.5,
'propString': Math.random().toString(16),
'propDate': new Date(),
'propObj': {
'propNum': Math.random(),
'propBool': Math.random() > 0.5,
'propString': Math.random().toString(16),
'propDate': new Date(),
}
}
})
}
const suite = new Benchmark.Suite();
const singleObject = generateItems(1)[0];
const tinyArray = generateItems(10);
const mediumArray = generateItems(100);
const largeArray = generateItems(1_000);
suite.add('hash({})', function () {
const v = objectHash({});
});
suite.add('fasterObjectHash({})', function () {
const v = fasterObjectHash({});
});
suite.add('hash(singleObject)', function () {
const v = objectHash(singleObject);
});
suite.add('fasterObjectHash(singleObject)', function () {
const v = fasterObjectHash(singleObject);
});
suite.add('hash(tinyArray)', function () {
const v = objectHash(tinyArray);
});
suite.add('fasterObjectHash(tinyArray)', function () {
const v = fasterObjectHash(tinyArray);
});
suite.add('hash(mediumArray)', function () {
const v = objectHash(mediumArray);
});
suite.add('fasterObjectHash(mediumArray)', function () {
const v = fasterObjectHash(mediumArray);
});
suite.add('hash(largeArray)', function () {
const v = objectHash(largeArray);
});
suite.add('fasterObjectHash(largeArray)', function () {
const v = fasterObjectHash(largeArray);
});
suite.add('hash(largeJson)', function () {
const v = objectHash(largeJson);
});
suite.add('objectHash(largeJson, { unorderedObjects: true })', function () {
const v = objectHash(largeJson, { unorderedObjects: true });
});
suite.add('fasterObjectHash(largeJson)', function () {
const v = fasterObjectHash(largeJson);
});
suite.add('fasterObjectHash(largeJson, { unorderedObjects: true })', function () {
const v = fasterObjectHash(largeJson, { unorderedObjects: true });
});
const results = [];
suite
// add listeners
.on('cycle', function (event) {
results.push(String(event.target));
})
.on('complete', function () {
results.forEach(console.log);
console.log('Fastest is ' + this.filter('fastest').map('name'));
})
.run({
async: false,
});
'use strict';
var crypto = require('crypto');
/**
* Exported function
*
* Options:
*
* - `algorithm` hash algo to be used by this instance: *'sha1', 'md5'
* - `excludeValues` {true|*false} hash object keys, values ignored
* - `encoding` hash encoding, supports 'buffer', '*hex', 'binary', 'base64'
* - `ignoreUnknown` {true|*false} ignore unknown object types
* - `replacer` optional function that replaces values before hashing
* - `respectFunctionProperties` {*true|false} consider function properties when hashing
* - `respectFunctionNames` {*true|false} consider 'name' property of functions for hashing
* - `respectType` {*true|false} Respect special properties (prototype, constructor)
* when hashing to distinguish between types
* - `unorderedArrays` {true|*false} Sort all arrays before hashing
* - `unorderedSets` {*true|false} Sort `Set` and `Map` instances before hashing
* * = default
*
* @param {object} object value to hash
* @param {object} options hashing options
* @return {string} hash value
* @api public
*/
exports = module.exports = objectHash;
function objectHash(object, options){
return hash(object, applyDefaults(object, options));
}
/**
* Exported sugar methods
*
* @param {object} object value to hash
* @return {string} hash value
* @api public
*/
exports.sha1 = function(object){
return objectHash(object);
};
exports.keys = function(object){
return objectHash(object, {excludeValues: true, algorithm: 'sha1', encoding: 'hex'});
};
exports.MD5 = function(object){
return objectHash(object, {algorithm: 'md5', encoding: 'hex'});
};
exports.keysMD5 = function(object){
return objectHash(object, {algorithm: 'md5', encoding: 'hex', excludeValues: true});
};
// Internals
var hashes = crypto.getHashes ? crypto.getHashes().slice().map(hash => hash.toLowerCase()) : ['sha1', 'md5'];
hashes.push('passthrough');
var hashesMap = new Map(hashes.map(hash => [hash, true]));
var encodings = ['buffer', 'hex', 'binary', 'base64'];
var encodingsMap = new Map(encodings.map(encoding => [encoding, true]));
var defaultOptions = {
algorithm: 'sha1',
encoding: 'hex',
excludeValues: false,
ignoreUnknown: false,
respectType: true,
respectFunctionNames: true,
respectFunctionProperties: true,
unorderedArrays: false,
unorderedSets: true,
unorderedObjects: true,
replacer: undefined,
excludeKeys: undefined,
};
function applyDefaults(object, sourceOptions){
if(typeof object === 'undefined') {
throw new Error('Object argument required.');
}
if (typeof sourceOptions === 'undefined')
return defaultOptions;
var options = {
algorithm: sourceOptions.algorithm ? sourceOptions.algorithm.toLowerCase() : 'sha1',
encoding: sourceOptions.encoding ? sourceOptions.encoding.toLowerCase() : 'hex',
excludeValues: sourceOptions.excludeValues ? true : false,
ignoreUnknown: sourceOptions.ignoreUnknown !== true ? false : true, // default to false
respectType: sourceOptions.respectType === false ? false : true, // default to true
respectFunctionNames: sourceOptions.respectFunctionNames === false ? false : true,
respectFunctionProperties: sourceOptions.respectFunctionProperties === false ? false : true,
unorderedArrays: sourceOptions.unorderedArrays !== true ? false : true, // default to false
unorderedSets: sourceOptions.unorderedSets === false ? false : true, // default to true
unorderedObjects: sourceOptions.unorderedObjects === false ? false : true, // default to true
replacer: sourceOptions.replacer || undefined,
excludeKeys: sourceOptions.excludeKeys || undefined,
};
// if there is a case-insensitive match in the hashes list, accept it
// (i.e. SHA256 for sha256)
if (hashesMap.has(options.algorithm.toLowerCase()))
options.algorithm = options.algorithm.toLowerCase();
else
throw new Error('Algorithm "' + options.algorithm + '" not supported. ' +
'supported values: ' + hashes.join(', '));
if(!encodingsMap.has(options.encoding) &&
options.algorithm !== 'passthrough'){
throw new Error('Encoding "' + options.encoding + '" not supported. ' +
'supported values: ' + encodings.join(', '));
}
return options;
}
var nativeFunc = '[native code] }';
var nativeFuncLength = nativeFunc.length;
/** Check if the given function is a native function */
function isNativeFunction(f) {
if ((typeof f) !== 'function') {
return false;
}
return Function.prototype.toString.call(f).slice(-nativeFuncLength) === nativeFunc;
}
function hash(object, options) {
var hashingStream = new PassThrough();
var hasher = typeHasher(options, hashingStream);
hasher.dispatch(object);
var finalValue = hashingStream.read();
if (options.algorithm !== 'passthrough') {
const hashStream = crypto.createHash(options.algorithm);
if (typeof hashStream.write === 'undefined') {
hashStream.write = hashStream.update;
hashStream.end = hashStream.update;
}
hashStream.update(finalValue);
if (hashStream.digest)
return hashStream.digest(options.encoding === 'buffer' ? undefined : options.encoding);
if (options.encoding === 'buffer') {
return buf;
}
return buf.toString(options.encoding);
} else {
if (options.encoding === 'buffer') {
return finalValue;
}
return finalValue.toString(options.encoding);
}
}
/**
* Expose streaming API
*
* @param {object} object Value to serialize
* @param {object} options Options, as for hash()
* @param {object} stream A stream to write the serializiation to
* @api public
*/
exports.writeToStream = function(object, options, stream) {
if (typeof stream === 'undefined') {
stream = options;
options = {};
}
options = applyDefaults(object, options);
return typeHasher(options, stream).dispatch(object);
};
var defaultPrototypesKeys = ['prototype', '__proto__', 'constructor'];
function typeHasher(options, writeTo, context){
context = context || new Map();
var write = function(str) {
if (writeTo.update) {
return writeTo.update(str, 'utf8');
} else {
return writeTo.write(str, 'utf8');
}
};
return {
dispatch: function(value){
if (options.replacer) {
value = options.replacer(value);
}
var type = typeof value;
if (value === null) {
type = 'null';
}
//console.log("[DEBUG] Dispatch: ", value, "->", type, " -> ", "_" + type);
return this[type](value);
},
object: function(object) {
var objString = Object.prototype.toString.call(object);
var objType = '';
var objectLength = objString.length;
// '[object a]'.length === 10, the minimum
if (objectLength < 10)
objType = 'unknown:[' + objString + ']';
else
// '[object '.length === 8
objType = objString.slice(8, objectLength - 1)
objType = objType.toLowerCase();
var objectNumber = null;
if ((objectNumber = context.get(object)) !== undefined) {
return this.dispatch('[CIRCULAR:' + objectNumber + ']');
} else {
context.set(object, context.size);
}
if (typeof Buffer !== 'undefined' && Buffer.isBuffer && Buffer.isBuffer(object)) {
write('buffer:');
return write(object);
}
if(objType !== 'object' && objType !== 'function' && objType !== 'asyncfunction') {
if(this[objType]) {
this[objType](object);
} else if (options.ignoreUnknown) {
return write('[' + objType + ']');
} else {
throw new Error('Unknown object type "' + objType + '"');
}
}else{
var keys = Object.keys(object);
if (options.unorderedObjects) {
keys = keys.sort();
}
let extraKeys = [];
// Make sure to incorporate special properties, so
// Types with different prototypes will produce
// a different hash and objects derived from
// different functions (`new Foo`, `new Bar`) will
// produce different hashes.
// We never do this for native functions since some
// seem to break because of that.
if (options.respectType !== false && !isNativeFunction(object)) {
extraKeys = defaultPrototypesKeys;
}
if (options.excludeKeys) {
keys = keys.filter(function(key) { return !options.excludeKeys(key); });
extraKeys = extraKeys.filter(function(key) { return !options.excludeKeys(key); });
}
write('object:' + (keys.length + extraKeys.length) + ':');
var self = this;
var callbackDispatch = function(key){
self.dispatch(key);
if(options.excludeValues === false) {
write(':');
self.dispatch(object[key]);
write(',');
} else
write(':,');
};
extraKeys.forEach(callbackDispatch);
return keys.forEach(callbackDispatch);
}
},
array: function(arr, unordered){
unordered = typeof unordered !== 'undefined' ? unordered :
options.unorderedArrays !== false; // default to options.unorderedArrays
var self = this;
write('array:' + arr.length + ':');
if (!unordered || arr.length <= 1) {
return arr.forEach(function(entry) {
return self.dispatch(entry);
});
}
// the unordered case is a little more complicated:
// since there is no canonical ordering on objects,
// i.e. {a:1} < {a:2} and {a:1} > {a:2} are both false,
// we first serialize each entry using a PassThrough stream
// before sorting.
// also: we can’t use the same context for all entries
// since the order of hashing should *not* matter. instead,
// we keep track of the additions to a copy of the context
// and add all of them to the global context when we’re done
var contextAdditions = [];
var entries = arr.map(function(entry) {
var strm = new PassThrough();
var localContext = new Map(context); // make copy
var hasher = typeHasher(options, strm, localContext);
hasher.dispatch(entry);
// take only what was added to localContext and append it to contextAdditions
contextAdditions = contextAdditions.concat(localContext.values());
return strm.read();
});
context = new Map(contextAdditions);
entries.sort();
return this.array(entries, false);
},
date: function(date){
return write('date:' + date.valueOf());
},
symbol: function(sym){
return write('symbol:' + sym.toString());
},
error: function(err){
return write('error:' + err.toString());
},
boolean: function(bool){
return write('bool:' + bool);
},
string: function(string){
write('string:' + string.length + ':' + string);
},
function: function(fn){
write('fn:');
if (isNativeFunction(fn)) {
this.dispatch('[native]');
} else {
this.dispatch(fn.toString());
}
if (options.respectFunctionNames !== false) {
// Make sure we can still distinguish native functions
// by their name, otherwise String and Function will
// have the same hash
this.dispatch("function-name:" + String(fn.name));
}
if (options.respectFunctionProperties) {
this.object(fn);
}
},
number: function(number){
return write('number:' + number);
},
xml: function(xml){
return write('xml:' + xml.toString());
},
null: function() {
return write('Null');
},
undefined: function() {
return write('Undefined');
},
regexp: function(regex){
return write('regex:' + regex.toString());
},
uint8array: function(arr){
write('uint8array:');
return this.dispatch(Array.prototype.slice.call(arr));
},
uint8clampedarray: function(arr){
write('uint8clampedarray:');
return this.dispatch(Array.prototype.slice.call(arr));
},
int8array: function(arr){
write('int8array:');
return this.dispatch(Array.prototype.slice.call(arr));
},
uint16array: function(arr){
write('uint16array:');
return this.dispatch(Array.prototype.slice.call(arr));
},
int16array: function(arr){
write('int16array:');
return this.dispatch(Array.prototype.slice.call(arr));
},
uint32array: function(arr){
write('uint32array:');
return this.dispatch(Array.prototype.slice.call(arr));
},
int32array: function(arr){
write('int32array:');
return this.dispatch(Array.prototype.slice.call(arr));
},
float32array: function(arr){
write('float32array:');
return this.dispatch(Array.prototype.slice.call(arr));
},
float64array: function(arr){
write('float64array:');
return this.dispatch(Array.prototype.slice.call(arr));
},
arraybuffer: function(arr){
write('arraybuffer:');
return this.dispatch(new Uint8Array(arr));
},
url: function(url) {
return write('url:' + url.toString(), 'utf8');
},
map: function(map) {
write('map:');
var arr = Array.from(map);
return this.array(arr, options.unorderedSets !== false);
},
set: function(set) {
write('set:');
var arr = Array.from(set);
return this.array(arr, options.unorderedSets !== false);
},
file: function(file) {
write('file:');
return this.dispatch([file.name, file.size, file.type, file.lastModfied]);
},
blob: function() {
if (options.ignoreUnknown) {
return write('[blob]');
}
throw Error('Hashing Blob objects is currently not supported\n' +
'(see https://github.com/puleos/object-hash/issues/26)\n' +
'Use "options.replacer" or "options.ignoreUnknown"\n');
},
domwindow: function() { return write('domwindow'); },
bigint: function(number){
return write('bigint:' + number.toString());
},
/* Node.js standard native objects */
process: function() { return write('process'); },
timer: function() { return write('timer'); },
pipe: function() { return write('pipe'); },
tcp: function() { return write('tcp'); },
udp: function() { return write('udp'); },
tty: function() { return write('tty'); },
statwatcher: function() { return write('statwatcher'); },
securecontext: function() { return write('securecontext'); },
connection: function() { return write('connection'); },
zlib: function() { return write('zlib'); },
context: function() { return write('context'); },
nodescript: function() { return write('nodescript'); },
httpparser: function() { return write('httpparser'); },
dataview: function() { return write('dataview'); },
signal: function() { return write('signal'); },
fsevent: function() { return write('fsevent'); },
tlswrap: function() { return write('tlswrap'); },
};
}
// Mini-implementation of stream.PassThrough
// We are far from having need for the full implementation, and we can
// make assumptions like "many writes, then only one final read"
// and we can ignore encoding specifics
function PassThrough() {
return {
buf: '',
write: function(b) {
this.buf += b;
},
end: function(b) {
this.buf += b;
},
read: function() {
return this.buf;
}
};
}
This file has been truncated, but you can view the full file.
[{"id":"2489651045","type":"CreateEvent","actor":{"id":665991,"login":"petroav","gravatar_id":"","url":"https://api.github.com/users/petroav","avatar_url":"https://avatars.githubusercontent.com/u/665991?"},"repo":{"id":28688495,"name":"petroav/6.828","url":"https://api.github.com/repos/petroav/6.828"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"Solution to homework and assignments from MIT's 6.828 (Operating Systems Engineering). Done in my spare time.","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:00:00Z"}
,{"id":"2489651051","type":"PushEvent","actor":{"id":3854017,"login":"rspt","gravatar_id":"","url":"https://api.github.com/users/rspt","avatar_url":"https://avatars.githubusercontent.com/u/3854017?"},"repo":{"id":28671719,"name":"rspt/rspt-theme","url":"https://api.github.com/repos/rspt/rspt-theme"},"payload":{"push_id":536863970,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"6b089eb4a43f728f0a594388092f480f2ecacfcd","before":"437c03652caa0bc4a7554b18d5c0a394c2f3d326","commits":[{"sha":"6b089eb4a43f728f0a594388092f480f2ecacfcd","author":{"email":"5c682c2d1ec4073e277f9ba9f4bdf07e5794dabe@rspt.ch","name":"rspt"},"message":"Fix main header height on mobile","distinct":true,"url":"https://api.github.com/repos/rspt/rspt-theme/commits/6b089eb4a43f728f0a594388092f480f2ecacfcd"}]},"public":true,"created_at":"2015-01-01T15:00:01Z"}
,{"id":"2489651053","type":"PushEvent","actor":{"id":6339799,"login":"izuzero","gravatar_id":"","url":"https://api.github.com/users/izuzero","avatar_url":"https://avatars.githubusercontent.com/u/6339799?"},"repo":{"id":28270952,"name":"izuzero/xe-module-ajaxboard","url":"https://api.github.com/repos/izuzero/xe-module-ajaxboard"},"payload":{"push_id":536863972,"size":1,"distinct_size":1,"ref":"refs/heads/develop","head":"ec819b9df4fe612bb35bf562f96810bf991f9975","before":"590433109f221a96cf19ea7a7d9a43ca333e3b3e","commits":[{"sha":"ec819b9df4fe612bb35bf562f96810bf991f9975","author":{"email":"df05f55543db3c62cf64f7438018ec37f3605d3c@gmail.com","name":"Eunsoo Lee"},"message":"#20 게시글 및 댓글 삭제 시 새로고침이 되는 문제 해결\n\n원래 의도는 새로고침이 되지 않고 확인창만으로 해결되어야 함.\n기본 게시판 대응 플러그인에서 발생한 이슈.","distinct":true,"url":"https://api.github.com/repos/izuzero/xe-module-ajaxboard/commits/ec819b9df4fe612bb35bf562f96810bf991f9975"}]},"public":true,"created_at":"2015-01-01T15:00:01Z"}
,{"id":"2489651057","type":"WatchEvent","actor":{"id":6894991,"login":"SametSisartenep","gravatar_id":"","url":"https://api.github.com/users/SametSisartenep","avatar_url":"https://avatars.githubusercontent.com/u/6894991?"},"repo":{"id":2871998,"name":"visionmedia/debug","url":"https://api.github.com/repos/visionmedia/debug"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:00:03Z","org":{"id":9285252,"login":"visionmedia","gravatar_id":"","url":"https://api.github.com/orgs/visionmedia","avatar_url":"https://avatars.githubusercontent.com/u/9285252?"}}
,{"id":"2489651062","type":"PushEvent","actor":{"id":485033,"login":"winterbe","gravatar_id":"","url":"https://api.github.com/users/winterbe","avatar_url":"https://avatars.githubusercontent.com/u/485033?"},"repo":{"id":28593843,"name":"winterbe/streamjs","url":"https://api.github.com/repos/winterbe/streamjs"},"payload":{"push_id":536863975,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"15b303203be31bd295bc831075da8f74b99b3981","before":"0fef99f604154ccfe1d2fcd0aadeffb5c58e43ff","commits":[{"sha":"15b303203be31bd295bc831075da8f74b99b3981","author":{"email":"52a47bffd52d9cea1ee1362f2bd0c5f87fac9262@googlemail.com","name":"Benjamin Winterberg"},"message":"Add comparator support for min, max operations","distinct":true,"url":"https://api.github.com/repos/winterbe/streamjs/commits/15b303203be31bd295bc831075da8f74b99b3981"}]},"public":true,"created_at":"2015-01-01T15:00:03Z"}
,{"id":"2489651063","type":"PushEvent","actor":{"id":4319954,"login":"hermanwahyudi","gravatar_id":"","url":"https://api.github.com/users/hermanwahyudi","avatar_url":"https://avatars.githubusercontent.com/u/4319954?"},"repo":{"id":27826205,"name":"hermanwahyudi/selenium","url":"https://api.github.com/repos/hermanwahyudi/selenium"},"payload":{"push_id":536863976,"size":1,"distinct_size":0,"ref":"refs/heads/master","head":"1b58dd4c4e14ea9cf5212b981774bd448a266c3c","before":"20b10e3a605bd177efff62f1130943774ac07bf3","commits":[{"sha":"1b58dd4c4e14ea9cf5212b981774bd448a266c3c","author":{"email":"2bb20d8a71fb7adbc1d6239cc9ff4130f26819dc@gmail.com","name":"Herman"},"message":"Update README.md","distinct":false,"url":"https://api.github.com/repos/hermanwahyudi/selenium/commits/1b58dd4c4e14ea9cf5212b981774bd448a266c3c"}]},"public":true,"created_at":"2015-01-01T15:00:03Z"}
,{"id":"2489651064","type":"PushEvent","actor":{"id":2881602,"login":"jdilt","gravatar_id":"","url":"https://api.github.com/users/jdilt","avatar_url":"https://avatars.githubusercontent.com/u/2881602?"},"repo":{"id":28682546,"name":"jdilt/jdilt.github.io","url":"https://api.github.com/repos/jdilt/jdilt.github.io"},"payload":{"push_id":536863977,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"d13cbd1e5c68b189fc91cfa14fdae1f52ef6f9e1","before":"8515c4a9efb40332659e4389821a73800ce6a4bf","commits":[{"sha":"d13cbd1e5c68b189fc91cfa14fdae1f52ef6f9e1","author":{"email":"3e9bbe622d800410f1d4d0a4bb92004e147f1b1e@163.com","name":"jdilt"},"message":"refine index page and about page","distinct":true,"url":"https://api.github.com/repos/jdilt/jdilt.github.io/commits/d13cbd1e5c68b189fc91cfa14fdae1f52ef6f9e1"}]},"public":true,"created_at":"2015-01-01T15:00:03Z"}
,{"id":"2489651066","type":"PushEvent","actor":{"id":3495129,"login":"sundaymtn","gravatar_id":"","url":"https://api.github.com/users/sundaymtn","avatar_url":"https://avatars.githubusercontent.com/u/3495129?"},"repo":{"id":24147122,"name":"sundaymtn/waterline","url":"https://api.github.com/repos/sundaymtn/waterline"},"payload":{"push_id":536863979,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"2a2ec35bfefb9341b1df2f213aad1dac804bc2ea","before":"a7dba8faf22d2f342b7398ff76bfd10a30106191","commits":[{"sha":"2a2ec35bfefb9341b1df2f213aad1dac804bc2ea","author":{"email":"7fbc091194a9488bfb16868527a7c3a8ba469dba@gmail.com","name":"Seth Carter"},"message":"Thu Jan 1 10:00:02 EST 2015","distinct":true,"url":"https://api.github.com/repos/sundaymtn/waterline/commits/2a2ec35bfefb9341b1df2f213aad1dac804bc2ea"}]},"public":true,"created_at":"2015-01-01T15:00:04Z"}
,{"id":"2489651067","type":"PushEvent","actor":{"id":10363514,"login":"zhouzhi2015","gravatar_id":"","url":"https://api.github.com/users/zhouzhi2015","avatar_url":"https://avatars.githubusercontent.com/u/10363514?"},"repo":{"id":28686619,"name":"zhouzhi2015/temp","url":"https://api.github.com/repos/zhouzhi2015/temp"},"payload":{"push_id":536863980,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"22019c081480435bb7d6e629766f2204c6c219bd","before":"d5926ef8c6a8a43724f8dc94007c3c5a918391c3","commits":[{"sha":"22019c081480435bb7d6e629766f2204c6c219bd","author":{"email":"421c4f4cb8c7fe07ea1166286558dc42a56cf3a7","name":"1184795629@qq.com"},"message":"测测","distinct":true,"url":"https://api.github.com/repos/zhouzhi2015/temp/commits/22019c081480435bb7d6e629766f2204c6c219bd"}]},"public":true,"created_at":"2015-01-01T15:00:04Z"}
,{"id":"2489651071","type":"ReleaseEvent","actor":{"id":7659931,"login":"petrkutalek","gravatar_id":"","url":"https://api.github.com/users/petrkutalek","avatar_url":"https://avatars.githubusercontent.com/u/7659931?"},"repo":{"id":20029610,"name":"petrkutalek/png2pos","url":"https://api.github.com/repos/petrkutalek/png2pos"},"payload":{"action":"published","release":{"url":"https://api.github.com/repos/petrkutalek/png2pos/releases/818676","assets_url":"https://api.github.com/repos/petrkutalek/png2pos/releases/818676/assets","upload_url":"https://uploads.github.com/repos/petrkutalek/png2pos/releases/818676/assets{?name}","html_url":"https://github.com/petrkutalek/png2pos/releases/tag/v1.5.4","id":818676,"tag_name":"v1.5.4","target_commitish":"master","name":"","draft":false,"author":{"login":"petrkutalek","id":7659931,"avatar_url":"https://avatars.githubusercontent.com/u/7659931?v=3","gravatar_id":"","url":"https://api.github.com/users/petrkutalek","html_url":"https://github.com/petrkutalek","followers_url":"https://api.github.com/users/petrkutalek/followers","following_url":"https://api.github.com/users/petrkutalek/following{/other_user}","gists_url":"https://api.github.com/users/petrkutalek/gists{/gist_id}","starred_url":"https://api.github.com/users/petrkutalek/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/petrkutalek/subscriptions","organizations_url":"https://api.github.com/users/petrkutalek/orgs","repos_url":"https://api.github.com/users/petrkutalek/repos","events_url":"https://api.github.com/users/petrkutalek/events{/privacy}","received_events_url":"https://api.github.com/users/petrkutalek/received_events","type":"User","site_admin":false},"prerelease":false,"created_at":"2015-01-01T14:56:44Z","published_at":"2015-01-01T15:00:05Z","assets":[{"url":"https://api.github.com/repos/petrkutalek/png2pos/releases/assets/362298","id":362298,"name":"png2pos-v1.5.4-linux.zip","label":null,"uploader":{"login":"petrkutalek","id":7659931,"avatar_url":"https://avatars.githubusercontent.com/u/7659931?v=3","gravatar_id":"","url":"https://api.github.com/users/petrkutalek","html_url":"https://github.com/petrkutalek","followers_url":"https://api.github.com/users/petrkutalek/followers","following_url":"https://api.github.com/users/petrkutalek/following{/other_user}","gists_url":"https://api.github.com/users/petrkutalek/gists{/gist_id}","starred_url":"https://api.github.com/users/petrkutalek/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/petrkutalek/subscriptions","organizations_url":"https://api.github.com/users/petrkutalek/orgs","repos_url":"https://api.github.com/users/petrkutalek/repos","events_url":"https://api.github.com/users/petrkutalek/events{/privacy}","received_events_url":"https://api.github.com/users/petrkutalek/received_events","type":"User","site_admin":false},"content_type":"application/zip","state":"uploaded","size":37781,"download_count":0,"created_at":"2015-01-01T14:59:22Z","updated_at":"2015-01-01T14:59:23Z","browser_download_url":"https://github.com/petrkutalek/png2pos/releases/download/v1.5.4/png2pos-v1.5.4-linux.zip"},{"url":"https://api.github.com/repos/petrkutalek/png2pos/releases/assets/362297","id":362297,"name":"png2pos-v1.5.4-linux.zip.asc","label":null,"uploader":{"login":"petrkutalek","id":7659931,"avatar_url":"https://avatars.githubusercontent.com/u/7659931?v=3","gravatar_id":"","url":"https://api.github.com/users/petrkutalek","html_url":"https://github.com/petrkutalek","followers_url":"https://api.github.com/users/petrkutalek/followers","following_url":"https://api.github.com/users/petrkutalek/following{/other_user}","gists_url":"https://api.github.com/users/petrkutalek/gists{/gist_id}","starred_url":"https://api.github.com/users/petrkutalek/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/petrkutalek/subscriptions","organizations_url":"https://api.github.com/users/petrkutalek/orgs","repos_url":"https://api.github.com/users/petrkutalek/repos","events_url":"https://api.github.com/users/petrkutalek/events{/privacy}","received_events_url":"https://api.github.com/users/petrkutalek/received_events","type":"User","site_admin":false},"content_type":"text/plain","state":"uploaded","size":495,"download_count":0,"created_at":"2015-01-01T14:59:21Z","updated_at":"2015-01-01T14:59:22Z","browser_download_url":"https://github.com/petrkutalek/png2pos/releases/download/v1.5.4/png2pos-v1.5.4-linux.zip.asc"},{"url":"https://api.github.com/repos/petrkutalek/png2pos/releases/assets/362299","id":362299,"name":"png2pos-v1.5.4-osx.zip","label":null,"uploader":{"login":"petrkutalek","id":7659931,"avatar_url":"https://avatars.githubusercontent.com/u/7659931?v=3","gravatar_id":"","url":"https://api.github.com/users/petrkutalek","html_url":"https://github.com/petrkutalek","followers_url":"https://api.github.com/users/petrkutalek/followers","following_url":"https://api.github.com/users/petrkutalek/following{/other_user}","gists_url":"https://api.github.com/users/petrkutalek/gists{/gist_id}","starred_url":"https://api.github.com/users/petrkutalek/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/petrkutalek/subscriptions","organizations_url":"https://api.github.com/users/petrkutalek/orgs","repos_url":"https://api.github.com/users/petrkutalek/repos","events_url":"https://api.github.com/users/petrkutalek/events{/privacy}","received_events_url":"https://api.github.com/users/petrkutalek/received_events","type":"User","site_admin":false},"content_type":"application/zip","state":"uploaded","size":27891,"download_count":0,"created_at":"2015-01-01T14:59:30Z","updated_at":"2015-01-01T14:59:32Z","browser_download_url":"https://github.com/petrkutalek/png2pos/releases/download/v1.5.4/png2pos-v1.5.4-osx.zip"},{"url":"https://api.github.com/repos/petrkutalek/png2pos/releases/assets/362300","id":362300,"name":"png2pos-v1.5.4-osx.zip.asc","label":null,"uploader":{"login":"petrkutalek","id":7659931,"avatar_url":"https://avatars.githubusercontent.com/u/7659931?v=3","gravatar_id":"","url":"https://api.github.com/users/petrkutalek","html_url":"https://github.com/petrkutalek","followers_url":"https://api.github.com/users/petrkutalek/followers","following_url":"https://api.github.com/users/petrkutalek/following{/other_user}","gists_url":"https://api.github.com/users/petrkutalek/gists{/gist_id}","starred_url":"https://api.github.com/users/petrkutalek/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/petrkutalek/subscriptions","organizations_url":"https://api.github.com/users/petrkutalek/orgs","repos_url":"https://api.github.com/users/petrkutalek/repos","events_url":"https://api.github.com/users/petrkutalek/events{/privacy}","received_events_url":"https://api.github.com/users/petrkutalek/received_events","type":"User","site_admin":false},"content_type":"text/plain","state":"uploaded","size":495,"download_count":0,"created_at":"2015-01-01T14:59:30Z","updated_at":"2015-01-01T14:59:33Z","browser_download_url":"https://github.com/petrkutalek/png2pos/releases/download/v1.5.4/png2pos-v1.5.4-osx.zip.asc"}],"tarball_url":"https://api.github.com/repos/petrkutalek/png2pos/tarball/v1.5.4","zipball_url":"https://api.github.com/repos/petrkutalek/png2pos/zipball/v1.5.4","body":""}},"public":true,"created_at":"2015-01-01T15:00:05Z"}
,{"id":"2489651077","type":"PushEvent","actor":{"id":4070158,"login":"caleb-eades","gravatar_id":"","url":"https://api.github.com/users/caleb-eades","avatar_url":"https://avatars.githubusercontent.com/u/4070158?"},"repo":{"id":20469468,"name":"caleb-eades/MinecraftServers","url":"https://api.github.com/repos/caleb-eades/MinecraftServers"},"payload":{"push_id":536863983,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"6ea9a1f5b0b3c4204272a5fe2587a5ee146c3a49","before":"8e94c95939b8f7db4c085da258698f07ae2b9cf3","commits":[{"sha":"6ea9a1f5b0b3c4204272a5fe2587a5ee146c3a49","author":{"email":"5bbfe2c07a3ef0b22b72711a2edf1c023f6433c5@gmail.com","name":"caleb-eades"},"message":"Auto Snapshot Server State","distinct":true,"url":"https://api.github.com/repos/caleb-eades/MinecraftServers/commits/6ea9a1f5b0b3c4204272a5fe2587a5ee146c3a49"}]},"public":true,"created_at":"2015-01-01T15:00:05Z"}
,{"id":"2489651078","type":"WatchEvent","actor":{"id":285289,"login":"comcxx11","gravatar_id":"","url":"https://api.github.com/users/comcxx11","avatar_url":"https://avatars.githubusercontent.com/u/285289?"},"repo":{"id":5569958,"name":"phpsysinfo/phpsysinfo","url":"https://api.github.com/repos/phpsysinfo/phpsysinfo"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:00:05Z","org":{"id":6797923,"login":"phpsysinfo","gravatar_id":"","url":"https://api.github.com/orgs/phpsysinfo","avatar_url":"https://avatars.githubusercontent.com/u/6797923?"}}
,{"id":"2489651080","type":"WatchEvent","actor":{"id":1757814,"login":"Soufien","gravatar_id":"","url":"https://api.github.com/users/Soufien","avatar_url":"https://avatars.githubusercontent.com/u/1757814?"},"repo":{"id":25873041,"name":"wasabeef/awesome-android-libraries","url":"https://api.github.com/repos/wasabeef/awesome-android-libraries"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:00:05Z"}
,{"id":"2489651083","type":"PushEvent","actor":{"id":9538449,"login":"hcremers","gravatar_id":"","url":"https://api.github.com/users/hcremers","avatar_url":"https://avatars.githubusercontent.com/u/9538449?"},"repo":{"id":26101634,"name":"ktgw0316/LightZone-l10n-nl","url":"https://api.github.com/repos/ktgw0316/LightZone-l10n-nl"},"payload":{"push_id":536863987,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"0fca01b12e6a8a1c537842d4831906d1eb4a277e","before":"fe610605ba48a87ee7c9bcf1a8a8db5f51bc4b58","commits":[{"sha":"0fca01b12e6a8a1c537842d4831906d1eb4a277e","author":{"email":"8800578b51f022c8d8adb9606a8b3db4fedbdac6@192.168.0.167","name":"hans"},"message":"Translated by hcremers","distinct":true,"url":"https://api.github.com/repos/ktgw0316/LightZone-l10n-nl/commits/0fca01b12e6a8a1c537842d4831906d1eb4a277e"}]},"public":true,"created_at":"2015-01-01T15:00:05Z"}
,{"id":"2489651087","type":"PullRequestEvent","actor":{"id":1277095,"login":"Dmitry-Me","gravatar_id":"","url":"https://api.github.com/users/Dmitry-Me","avatar_url":"https://avatars.githubusercontent.com/u/1277095?"},"repo":{"id":3542607,"name":"leethomason/tinyxml2","url":"https://api.github.com/repos/leethomason/tinyxml2"},"payload":{"action":"opened","number":260,"pull_request":{"url":"https://api.github.com/repos/leethomason/tinyxml2/pulls/260","id":26743765,"html_url":"https://github.com/leethomason/tinyxml2/pull/260","diff_url":"https://github.com/leethomason/tinyxml2/pull/260.diff","patch_url":"https://github.com/leethomason/tinyxml2/pull/260.patch","issue_url":"https://api.github.com/repos/leethomason/tinyxml2/issues/260","number":260,"state":"open","locked":false,"title":"Rearrange checks in more natural order","user":{"login":"Dmitry-Me","id":1277095,"avatar_url":"https://avatars.githubusercontent.com/u/1277095?v=3","gravatar_id":"","url":"https://api.github.com/users/Dmitry-Me","html_url":"https://github.com/Dmitry-Me","followers_url":"https://api.github.com/users/Dmitry-Me/followers","following_url":"https://api.github.com/users/Dmitry-Me/following{/other_user}","gists_url":"https://api.github.com/users/Dmitry-Me/gists{/gist_id}","starred_url":"https://api.github.com/users/Dmitry-Me/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Dmitry-Me/subscriptions","organizations_url":"https://api.github.com/users/Dmitry-Me/orgs","repos_url":"https://api.github.com/users/Dmitry-Me/repos","events_url":"https://api.github.com/users/Dmitry-Me/events{/privacy}","received_events_url":"https://api.github.com/users/Dmitry-Me/received_events","type":"User","site_admin":false},"body":"The original checks order was rather pessimistic for no reasons. We expect it to be successful, don't we?","created_at":"2015-01-01T15:00:06Z","updated_at":"2015-01-01T15:00:06Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/leethomason/tinyxml2/pulls/260/commits","review_comments_url":"https://api.github.com/repos/leethomason/tinyxml2/pulls/260/comments","review_comment_url":"https://api.github.com/repos/leethomason/tinyxml2/pulls/comments/{number}","comments_url":"https://api.github.com/repos/leethomason/tinyxml2/issues/260/comments","statuses_url":"https://api.github.com/repos/leethomason/tinyxml2/statuses/7a7e5dc52537a534bd92dfb17fd0d0d8f39c2723","head":{"label":"Dmitry-Me:placeChecksInMoreNaturalOrder","ref":"placeChecksInMoreNaturalOrder","sha":"7a7e5dc52537a534bd92dfb17fd0d0d8f39c2723","user":{"login":"Dmitry-Me","id":1277095,"avatar_url":"https://avatars.githubusercontent.com/u/1277095?v=3","gravatar_id":"","url":"https://api.github.com/users/Dmitry-Me","html_url":"https://github.com/Dmitry-Me","followers_url":"https://api.github.com/users/Dmitry-Me/followers","following_url":"https://api.github.com/users/Dmitry-Me/following{/other_user}","gists_url":"https://api.github.com/users/Dmitry-Me/gists{/gist_id}","starred_url":"https://api.github.com/users/Dmitry-Me/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Dmitry-Me/subscriptions","organizations_url":"https://api.github.com/users/Dmitry-Me/orgs","repos_url":"https://api.github.com/users/Dmitry-Me/repos","events_url":"https://api.github.com/users/Dmitry-Me/events{/privacy}","received_events_url":"https://api.github.com/users/Dmitry-Me/received_events","type":"User","site_admin":false},"repo":{"id":22466434,"name":"tinyxml2","full_name":"Dmitry-Me/tinyxml2","owner":{"login":"Dmitry-Me","id":1277095,"avatar_url":"https://avatars.githubusercontent.com/u/1277095?v=3","gravatar_id":"","url":"https://api.github.com/users/Dmitry-Me","html_url":"https://github.com/Dmitry-Me","followers_url":"https://api.github.com/users/Dmitry-Me/followers","following_url":"https://api.github.com/users/Dmitry-Me/following{/other_user}","gists_url":"https://api.github.com/users/Dmitry-Me/gists{/gist_id}","starred_url":"https://api.github.com/users/Dmitry-Me/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Dmitry-Me/subscriptions","organizations_url":"https://api.github.com/users/Dmitry-Me/orgs","repos_url":"https://api.github.com/users/Dmitry-Me/repos","events_url":"https://api.github.com/users/Dmitry-Me/events{/privacy}","received_events_url":"https://api.github.com/users/Dmitry-Me/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/Dmitry-Me/tinyxml2","description":"TinyXML2 is a simple, small, efficient, C++ XML parser that can be easily integrating into other programs.","fork":true,"url":"https://api.github.com/repos/Dmitry-Me/tinyxml2","forks_url":"https://api.github.com/repos/Dmitry-Me/tinyxml2/forks","keys_url":"https://api.github.com/repos/Dmitry-Me/tinyxml2/keys{/key_id}","collaborators_url":"https://api.github.com/repos/Dmitry-Me/tinyxml2/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/Dmitry-Me/tinyxml2/teams","hooks_url":"https://api.github.com/repos/Dmitry-Me/tinyxml2/hooks","issue_events_url":"https://api.github.com/repos/Dmitry-Me/tinyxml2/issues/events{/number}","events_url":"https://api.github.com/repos/Dmitry-Me/tinyxml2/events","assignees_url":"https://api.github.com/repos/Dmitry-Me/tinyxml2/assignees{/user}","branches_url":"https://api.github.com/repos/Dmitry-Me/tinyxml2/branches{/branch}","tags_url":"https://api.github.com/repos/Dmitry-Me/tinyxml2/tags","blobs_url":"https://api.github.com/repos/Dmitry-Me/tinyxml2/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/Dmitry-Me/tinyxml2/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/Dmitry-Me/tinyxml2/git/refs{/sha}","trees_url":"https://api.github.com/repos/Dmitry-Me/tinyxml2/git/trees{/sha}","statuses_url":"https://api.github.com/repos/Dmitry-Me/tinyxml2/statuses/{sha}","languages_url":"https://api.github.com/repos/Dmitry-Me/tinyxml2/languages","stargazers_url":"https://api.github.com/repos/Dmitry-Me/tinyxml2/stargazers","contributors_url":"https://api.github.com/repos/Dmitry-Me/tinyxml2/contributors","subscribers_url":"https://api.github.com/repos/Dmitry-Me/tinyxml2/subscribers","subscription_url":"https://api.github.com/repos/Dmitry-Me/tinyxml2/subscription","commits_url":"https://api.github.com/repos/Dmitry-Me/tinyxml2/commits{/sha}","git_commits_url":"https://api.github.com/repos/Dmitry-Me/tinyxml2/git/commits{/sha}","comments_url":"https://api.github.com/repos/Dmitry-Me/tinyxml2/comments{/number}","issue_comment_url":"https://api.github.com/repos/Dmitry-Me/tinyxml2/issues/comments/{number}","contents_url":"https://api.github.com/repos/Dmitry-Me/tinyxml2/contents/{+path}","compare_url":"https://api.github.com/repos/Dmitry-Me/tinyxml2/compare/{base}...{head}","merges_url":"https://api.github.com/repos/Dmitry-Me/tinyxml2/merges","archive_url":"https://api.github.com/repos/Dmitry-Me/tinyxml2/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/Dmitry-Me/tinyxml2/downloads","issues_url":"https://api.github.com/repos/Dmitry-Me/tinyxml2/issues{/number}","pulls_url":"https://api.github.com/repos/Dmitry-Me/tinyxml2/pulls{/number}","milestones_url":"https://api.github.com/repos/Dmitry-Me/tinyxml2/milestones{/number}","notifications_url":"https://api.github.com/repos/Dmitry-Me/tinyxml2/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/Dmitry-Me/tinyxml2/labels{/name}","releases_url":"https://api.github.com/repos/Dmitry-Me/tinyxml2/releases{/id}","created_at":"2014-07-31T11:09:27Z","updated_at":"2014-09-04T07:31:28Z","pushed_at":"2015-01-01T14:58:57Z","git_url":"git://github.com/Dmitry-Me/tinyxml2.git","ssh_url":"git@github.com:Dmitry-Me/tinyxml2.git","clone_url":"https://github.com/Dmitry-Me/tinyxml2.git","svn_url":"https://github.com/Dmitry-Me/tinyxml2","homepage":"","size":1904,"stargazers_count":0,"watchers_count":0,"language":"C++","has_issues":false,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master"}},"base":{"label":"leethomason:master","ref":"master","sha":"b4e81b014e06302df55d0441dceadf6f6825e0ce","user":{"login":"leethomason","id":699925,"avatar_url":"https://avatars.githubusercontent.com/u/699925?v=3","gravatar_id":"","url":"https://api.github.com/users/leethomason","html_url":"https://github.com/leethomason","followers_url":"https://api.github.com/users/leethomason/followers","following_url":"https://api.github.com/users/leethomason/following{/other_user}","gists_url":"https://api.github.com/users/leethomason/gists{/gist_id}","starred_url":"https://api.github.com/users/leethomason/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/leethomason/subscriptions","organizations_url":"https://api.github.com/users/leethomason/orgs","repos_url":"https://api.github.com/users/leethomason/repos","events_url":"https://api.github.com/users/leethomason/events{/privacy}","received_events_url":"https://api.github.com/users/leethomason/received_events","type":"User","site_admin":false},"repo":{"id":3542607,"name":"tinyxml2","full_name":"leethomason/tinyxml2","owner":{"login":"leethomason","id":699925,"avatar_url":"https://avatars.githubusercontent.com/u/699925?v=3","gravatar_id":"","url":"https://api.github.com/users/leethomason","html_url":"https://github.com/leethomason","followers_url":"https://api.github.com/users/leethomason/followers","following_url":"https://api.github.com/users/leethomason/following{/other_user}","gists_url":"https://api.github.com/users/leethomason/gists{/gist_id}","starred_url":"https://api.github.com/users/leethomason/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/leethomason/subscriptions","organizations_url":"https://api.github.com/users/leethomason/orgs","repos_url":"https://api.github.com/users/leethomason/repos","events_url":"https://api.github.com/users/leethomason/events{/privacy}","received_events_url":"https://api.github.com/users/leethomason/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/leethomason/tinyxml2","description":"TinyXML2 is a simple, small, efficient, C++ XML parser that can be easily integrating into other programs.","fork":false,"url":"https://api.github.com/repos/leethomason/tinyxml2","forks_url":"https://api.github.com/repos/leethomason/tinyxml2/forks","keys_url":"https://api.github.com/repos/leethomason/tinyxml2/keys{/key_id}","collaborators_url":"https://api.github.com/repos/leethomason/tinyxml2/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/leethomason/tinyxml2/teams","hooks_url":"https://api.github.com/repos/leethomason/tinyxml2/hooks","issue_events_url":"https://api.github.com/repos/leethomason/tinyxml2/issues/events{/number}","events_url":"https://api.github.com/repos/leethomason/tinyxml2/events","assignees_url":"https://api.github.com/repos/leethomason/tinyxml2/assignees{/user}","branches_url":"https://api.github.com/repos/leethomason/tinyxml2/branches{/branch}","tags_url":"https://api.github.com/repos/leethomason/tinyxml2/tags","blobs_url":"https://api.github.com/repos/leethomason/tinyxml2/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/leethomason/tinyxml2/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/leethomason/tinyxml2/git/refs{/sha}","trees_url":"https://api.github.com/repos/leethomason/tinyxml2/git/trees{/sha}","statuses_url":"https://api.github.com/repos/leethomason/tinyxml2/statuses/{sha}","languages_url":"https://api.github.com/repos/leethomason/tinyxml2/languages","stargazers_url":"https://api.github.com/repos/leethomason/tinyxml2/stargazers","contributors_url":"https://api.github.com/repos/leethomason/tinyxml2/contributors","subscribers_url":"https://api.github.com/repos/leethomason/tinyxml2/subscribers","subscription_url":"https://api.github.com/repos/leethomason/tinyxml2/subscription","commits_url":"https://api.github.com/repos/leethomason/tinyxml2/commits{/sha}","git_commits_url":"https://api.github.com/repos/leethomason/tinyxml2/git/commits{/sha}","comments_url":"https://api.github.com/repos/leethomason/tinyxml2/comments{/number}","issue_comment_url":"https://api.github.com/repos/leethomason/tinyxml2/issues/comments/{number}","contents_url":"https://api.github.com/repos/leethomason/tinyxml2/contents/{+path}","compare_url":"https://api.github.com/repos/leethomason/tinyxml2/compare/{base}...{head}","merges_url":"https://api.github.com/repos/leethomason/tinyxml2/merges","archive_url":"https://api.github.com/repos/leethomason/tinyxml2/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/leethomason/tinyxml2/downloads","issues_url":"https://api.github.com/repos/leethomason/tinyxml2/issues{/number}","pulls_url":"https://api.github.com/repos/leethomason/tinyxml2/pulls{/number}","milestones_url":"https://api.github.com/repos/leethomason/tinyxml2/milestones{/number}","notifications_url":"https://api.github.com/repos/leethomason/tinyxml2/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/leethomason/tinyxml2/labels{/name}","releases_url":"https://api.github.com/repos/leethomason/tinyxml2/releases{/id}","created_at":"2012-02-25T05:15:50Z","updated_at":"2015-01-01T07:21:21Z","pushed_at":"2014-12-27T00:25:14Z","git_url":"git://github.com/leethomason/tinyxml2.git","ssh_url":"git@github.com:leethomason/tinyxml2.git","clone_url":"https://github.com/leethomason/tinyxml2.git","svn_url":"https://github.com/leethomason/tinyxml2","homepage":"","size":2559,"stargazers_count":648,"watchers_count":648,"language":"C++","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":298,"mirror_url":null,"open_issues_count":39,"forks":298,"open_issues":39,"watchers":648,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/leethomason/tinyxml2/pulls/260"},"html":{"href":"https://github.com/leethomason/tinyxml2/pull/260"},"issue":{"href":"https://api.github.com/repos/leethomason/tinyxml2/issues/260"},"comments":{"href":"https://api.github.com/repos/leethomason/tinyxml2/issues/260/comments"},"review_comments":{"href":"https://api.github.com/repos/leethomason/tinyxml2/pulls/260/comments"},"review_comment":{"href":"https://api.github.com/repos/leethomason/tinyxml2/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/leethomason/tinyxml2/pulls/260/commits"},"statuses":{"href":"https://api.github.com/repos/leethomason/tinyxml2/statuses/7a7e5dc52537a534bd92dfb17fd0d0d8f39c2723"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":1,"additions":2,"deletions":3,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:00:06Z"}
,{"id":"2489651090","type":"PullRequestEvent","actor":{"id":2362917,"login":"chrisndodge","gravatar_id":"","url":"https://api.github.com/users/chrisndodge","avatar_url":"https://avatars.githubusercontent.com/u/2362917?"},"repo":{"id":10391073,"name":"edx/edx-platform","url":"https://api.github.com/repos/edx/edx-platform"},"payload":{"action":"closed","number":6196,"pull_request":{"url":"https://api.github.com/repos/edx/edx-platform/pulls/6196","id":25746676,"html_url":"https://github.com/edx/edx-platform/pull/6196","diff_url":"https://github.com/edx/edx-platform/pull/6196.diff","patch_url":"https://github.com/edx/edx-platform/pull/6196.patch","issue_url":"https://api.github.com/repos/edx/edx-platform/issues/6196","number":6196,"state":"closed","locked":false,"title":"WL-168 When redeeming a Registration Code in the shopping cart, the user should be redirect to the Registration Code Redemption page","user":{"login":"muhhshoaib","id":7291787,"avatar_url":"https://avatars.githubusercontent.com/u/7291787?v=3","gravatar_id":"","url":"https://api.github.com/users/muhhshoaib","html_url":"https://github.com/muhhshoaib","followers_url":"https://api.github.com/users/muhhshoaib/followers","following_url":"https://api.github.com/users/muhhshoaib/following{/other_user}","gists_url":"https://api.github.com/users/muhhshoaib/gists{/gist_id}","starred_url":"https://api.github.com/users/muhhshoaib/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/muhhshoaib/subscriptions","organizations_url":"https://api.github.com/users/muhhshoaib/orgs","repos_url":"https://api.github.com/users/muhhshoaib/repos","events_url":"https://api.github.com/users/muhhshoaib/events{/privacy}","received_events_url":"https://api.github.com/users/muhhshoaib/received_events","type":"User","site_admin":false},"body":"@chrisndodge @smagoun \r\n\r\nKindly review the changes for WL-168\r\n\r\nThanks","created_at":"2014-12-09T14:32:39Z","updated_at":"2015-01-01T15:00:06Z","closed_at":"2015-01-01T15:00:06Z","merged_at":"2015-01-01T15:00:06Z","merge_commit_sha":"1e142da64eac22f52945384f0bff8273f6309582","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/edx/edx-platform/pulls/6196/commits","review_comments_url":"https://api.github.com/repos/edx/edx-platform/pulls/6196/comments","review_comment_url":"https://api.github.com/repos/edx/edx-platform/pulls/comments/{number}","comments_url":"https://api.github.com/repos/edx/edx-platform/issues/6196/comments","statuses_url":"https://api.github.com/repos/edx/edx-platform/statuses/5a437b396e03857a256ffe1ba7e1b5c55c028bd9","head":{"label":"edx:muhhshoaib/WL-168","ref":"muhhshoaib/WL-168","sha":"5a437b396e03857a256ffe1ba7e1b5c55c028bd9","user":{"login":"edx","id":3179841,"avatar_url":"https://avatars.githubusercontent.com/u/3179841?v=3","gravatar_id":"","url":"https://api.github.com/users/edx","html_url":"https://github.com/edx","followers_url":"https://api.github.com/users/edx/followers","following_url":"https://api.github.com/users/edx/following{/other_user}","gists_url":"https://api.github.com/users/edx/gists{/gist_id}","starred_url":"https://api.github.com/users/edx/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/edx/subscriptions","organizations_url":"https://api.github.com/users/edx/orgs","repos_url":"https://api.github.com/users/edx/repos","events_url":"https://api.github.com/users/edx/events{/privacy}","received_events_url":"https://api.github.com/users/edx/received_events","type":"Organization","site_admin":false},"repo":{"id":10391073,"name":"edx-platform","full_name":"edx/edx-platform","owner":{"login":"edx","id":3179841,"avatar_url":"https://avatars.githubusercontent.com/u/3179841?v=3","gravatar_id":"","url":"https://api.github.com/users/edx","html_url":"https://github.com/edx","followers_url":"https://api.github.com/users/edx/followers","following_url":"https://api.github.com/users/edx/following{/other_user}","gists_url":"https://api.github.com/users/edx/gists{/gist_id}","starred_url":"https://api.github.com/users/edx/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/edx/subscriptions","organizations_url":"https://api.github.com/users/edx/orgs","repos_url":"https://api.github.com/users/edx/repos","events_url":"https://api.github.com/users/edx/events{/privacy}","received_events_url":"https://api.github.com/users/edx/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/edx/edx-platform","description":"Open edX, the edX platform that powers http://edx.org","fork":false,"url":"https://api.github.com/repos/edx/edx-platform","forks_url":"https://api.github.com/repos/edx/edx-platform/forks","keys_url":"https://api.github.com/repos/edx/edx-platform/keys{/key_id}","collaborators_url":"https://api.github.com/repos/edx/edx-platform/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/edx/edx-platform/teams","hooks_url":"https://api.github.com/repos/edx/edx-platform/hooks","issue_events_url":"https://api.github.com/repos/edx/edx-platform/issues/events{/number}","events_url":"https://api.github.com/repos/edx/edx-platform/events","assignees_url":"https://api.github.com/repos/edx/edx-platform/assignees{/user}","branches_url":"https://api.github.com/repos/edx/edx-platform/branches{/branch}","tags_url":"https://api.github.com/repos/edx/edx-platform/tags","blobs_url":"https://api.github.com/repos/edx/edx-platform/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/edx/edx-platform/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/edx/edx-platform/git/refs{/sha}","trees_url":"https://api.github.com/repos/edx/edx-platform/git/trees{/sha}","statuses_url":"https://api.github.com/repos/edx/edx-platform/statuses/{sha}","languages_url":"https://api.github.com/repos/edx/edx-platform/languages","stargazers_url":"https://api.github.com/repos/edx/edx-platform/stargazers","contributors_url":"https://api.github.com/repos/edx/edx-platform/contributors","subscribers_url":"https://api.github.com/repos/edx/edx-platform/subscribers","subscription_url":"https://api.github.com/repos/edx/edx-platform/subscription","commits_url":"https://api.github.com/repos/edx/edx-platform/commits{/sha}","git_commits_url":"https://api.github.com/repos/edx/edx-platform/git/commits{/sha}","comments_url":"https://api.github.com/repos/edx/edx-platform/comments{/number}","issue_comment_url":"https://api.github.com/repos/edx/edx-platform/issues/comments/{number}","contents_url":"https://api.github.com/repos/edx/edx-platform/contents/{+path}","compare_url":"https://api.github.com/repos/edx/edx-platform/compare/{base}...{head}","merges_url":"https://api.github.com/repos/edx/edx-platform/merges","archive_url":"https://api.github.com/repos/edx/edx-platform/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/edx/edx-platform/downloads","issues_url":"https://api.github.com/repos/edx/edx-platform/issues{/number}","pulls_url":"https://api.github.com/repos/edx/edx-platform/pulls{/number}","milestones_url":"https://api.github.com/repos/edx/edx-platform/milestones{/number}","notifications_url":"https://api.github.com/repos/edx/edx-platform/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/edx/edx-platform/labels{/name}","releases_url":"https://api.github.com/repos/edx/edx-platform/releases{/id}","created_at":"2013-05-30T20:20:38Z","updated_at":"2014-12-31T21:59:36Z","pushed_at":"2015-01-01T15:00:06Z","git_url":"git://github.com/edx/edx-platform.git","ssh_url":"git@github.com:edx/edx-platform.git","clone_url":"https://github.com/edx/edx-platform.git","svn_url":"https://github.com/edx/edx-platform","homepage":"http://openedx.org/","size":1558418,"stargazers_count":1643,"watchers_count":1643,"language":"Python","has_issues":false,"has_downloads":true,"has_wiki":true,"has_pages":true,"forks_count":944,"mirror_url":null,"open_issues_count":144,"forks":944,"open_issues":144,"watchers":1643,"default_branch":"master"}},"base":{"label":"edx:master","ref":"master","sha":"20c356bd8936e2f477a97118aedd654ec6923ccf","user":{"login":"edx","id":3179841,"avatar_url":"https://avatars.githubusercontent.com/u/3179841?v=3","gravatar_id":"","url":"https://api.github.com/users/edx","html_url":"https://github.com/edx","followers_url":"https://api.github.com/users/edx/followers","following_url":"https://api.github.com/users/edx/following{/other_user}","gists_url":"https://api.github.com/users/edx/gists{/gist_id}","starred_url":"https://api.github.com/users/edx/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/edx/subscriptions","organizations_url":"https://api.github.com/users/edx/orgs","repos_url":"https://api.github.com/users/edx/repos","events_url":"https://api.github.com/users/edx/events{/privacy}","received_events_url":"https://api.github.com/users/edx/received_events","type":"Organization","site_admin":false},"repo":{"id":10391073,"name":"edx-platform","full_name":"edx/edx-platform","owner":{"login":"edx","id":3179841,"avatar_url":"https://avatars.githubusercontent.com/u/3179841?v=3","gravatar_id":"","url":"https://api.github.com/users/edx","html_url":"https://github.com/edx","followers_url":"https://api.github.com/users/edx/followers","following_url":"https://api.github.com/users/edx/following{/other_user}","gists_url":"https://api.github.com/users/edx/gists{/gist_id}","starred_url":"https://api.github.com/users/edx/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/edx/subscriptions","organizations_url":"https://api.github.com/users/edx/orgs","repos_url":"https://api.github.com/users/edx/repos","events_url":"https://api.github.com/users/edx/events{/privacy}","received_events_url":"https://api.github.com/users/edx/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/edx/edx-platform","description":"Open edX, the edX platform that powers http://edx.org","fork":false,"url":"https://api.github.com/repos/edx/edx-platform","forks_url":"https://api.github.com/repos/edx/edx-platform/forks","keys_url":"https://api.github.com/repos/edx/edx-platform/keys{/key_id}","collaborators_url":"https://api.github.com/repos/edx/edx-platform/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/edx/edx-platform/teams","hooks_url":"https://api.github.com/repos/edx/edx-platform/hooks","issue_events_url":"https://api.github.com/repos/edx/edx-platform/issues/events{/number}","events_url":"https://api.github.com/repos/edx/edx-platform/events","assignees_url":"https://api.github.com/repos/edx/edx-platform/assignees{/user}","branches_url":"https://api.github.com/repos/edx/edx-platform/branches{/branch}","tags_url":"https://api.github.com/repos/edx/edx-platform/tags","blobs_url":"https://api.github.com/repos/edx/edx-platform/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/edx/edx-platform/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/edx/edx-platform/git/refs{/sha}","trees_url":"https://api.github.com/repos/edx/edx-platform/git/trees{/sha}","statuses_url":"https://api.github.com/repos/edx/edx-platform/statuses/{sha}","languages_url":"https://api.github.com/repos/edx/edx-platform/languages","stargazers_url":"https://api.github.com/repos/edx/edx-platform/stargazers","contributors_url":"https://api.github.com/repos/edx/edx-platform/contributors","subscribers_url":"https://api.github.com/repos/edx/edx-platform/subscribers","subscription_url":"https://api.github.com/repos/edx/edx-platform/subscription","commits_url":"https://api.github.com/repos/edx/edx-platform/commits{/sha}","git_commits_url":"https://api.github.com/repos/edx/edx-platform/git/commits{/sha}","comments_url":"https://api.github.com/repos/edx/edx-platform/comments{/number}","issue_comment_url":"https://api.github.com/repos/edx/edx-platform/issues/comments/{number}","contents_url":"https://api.github.com/repos/edx/edx-platform/contents/{+path}","compare_url":"https://api.github.com/repos/edx/edx-platform/compare/{base}...{head}","merges_url":"https://api.github.com/repos/edx/edx-platform/merges","archive_url":"https://api.github.com/repos/edx/edx-platform/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/edx/edx-platform/downloads","issues_url":"https://api.github.com/repos/edx/edx-platform/issues{/number}","pulls_url":"https://api.github.com/repos/edx/edx-platform/pulls{/number}","milestones_url":"https://api.github.com/repos/edx/edx-platform/milestones{/number}","notifications_url":"https://api.github.com/repos/edx/edx-platform/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/edx/edx-platform/labels{/name}","releases_url":"https://api.github.com/repos/edx/edx-platform/releases{/id}","created_at":"2013-05-30T20:20:38Z","updated_at":"2014-12-31T21:59:36Z","pushed_at":"2015-01-01T15:00:06Z","git_url":"git://github.com/edx/edx-platform.git","ssh_url":"git@github.com:edx/edx-platform.git","clone_url":"https://github.com/edx/edx-platform.git","svn_url":"https://github.com/edx/edx-platform","homepage":"http://openedx.org/","size":1558418,"stargazers_count":1643,"watchers_count":1643,"language":"Python","has_issues":false,"has_downloads":true,"has_wiki":true,"has_pages":true,"forks_count":944,"mirror_url":null,"open_issues_count":144,"forks":944,"open_issues":144,"watchers":1643,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/edx/edx-platform/pulls/6196"},"html":{"href":"https://github.com/edx/edx-platform/pull/6196"},"issue":{"href":"https://api.github.com/repos/edx/edx-platform/issues/6196"},"comments":{"href":"https://api.github.com/repos/edx/edx-platform/issues/6196/comments"},"review_comments":{"href":"https://api.github.com/repos/edx/edx-platform/pulls/6196/comments"},"review_comment":{"href":"https://api.github.com/repos/edx/edx-platform/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/edx/edx-platform/pulls/6196/commits"},"statuses":{"href":"https://api.github.com/repos/edx/edx-platform/statuses/5a437b396e03857a256ffe1ba7e1b5c55c028bd9"}},"merged":true,"mergeable":null,"mergeable_state":"unknown","merged_by":{"login":"chrisndodge","id":2362917,"avatar_url":"https://avatars.githubusercontent.com/u/2362917?v=3","gravatar_id":"","url":"https://api.github.com/users/chrisndodge","html_url":"https://github.com/chrisndodge","followers_url":"https://api.github.com/users/chrisndodge/followers","following_url":"https://api.github.com/users/chrisndodge/following{/other_user}","gists_url":"https://api.github.com/users/chrisndodge/gists{/gist_id}","starred_url":"https://api.github.com/users/chrisndodge/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/chrisndodge/subscriptions","organizations_url":"https://api.github.com/users/chrisndodge/orgs","repos_url":"https://api.github.com/users/chrisndodge/repos","events_url":"https://api.github.com/users/chrisndodge/events{/privacy}","received_events_url":"https://api.github.com/users/chrisndodge/received_events","type":"User","site_admin":false},"comments":22,"review_comments":14,"commits":1,"additions":196,"deletions":326,"changed_files":14}},"public":true,"created_at":"2015-01-01T15:00:06Z","org":{"id":3179841,"login":"edx","gravatar_id":"","url":"https://api.github.com/orgs/edx","avatar_url":"https://avatars.githubusercontent.com/u/3179841?"}}
,{"id":"2489651091","type":"IssuesEvent","actor":{"id":6269456,"login":"yhoonkim","gravatar_id":"","url":"https://api.github.com/users/yhoonkim","avatar_url":"https://avatars.githubusercontent.com/u/6269456?"},"repo":{"id":28594770,"name":"yhoonkim/GraphBoard","url":"https://api.github.com/repos/yhoonkim/GraphBoard"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/yhoonkim/GraphBoard/issues/27","labels_url":"https://api.github.com/repos/yhoonkim/GraphBoard/issues/27/labels{/name}","comments_url":"https://api.github.com/repos/yhoonkim/GraphBoard/issues/27/comments","events_url":"https://api.github.com/repos/yhoonkim/GraphBoard/issues/27/events","html_url":"https://github.com/yhoonkim/GraphBoard/issues/27","id":53221333,"number":27,"title":"Other readers can react to articles","user":{"login":"yhoonkim","id":6269456,"avatar_url":"https://avatars.githubusercontent.com/u/6269456?v=3","gravatar_id":"","url":"https://api.github.com/users/yhoonkim","html_url":"https://github.com/yhoonkim","followers_url":"https://api.github.com/users/yhoonkim/followers","following_url":"https://api.github.com/users/yhoonkim/following{/other_user}","gists_url":"https://api.github.com/users/yhoonkim/gists{/gist_id}","starred_url":"https://api.github.com/users/yhoonkim/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/yhoonkim/subscriptions","organizations_url":"https://api.github.com/users/yhoonkim/orgs","repos_url":"https://api.github.com/users/yhoonkim/repos","events_url":"https://api.github.com/users/yhoonkim/events{/privacy}","received_events_url":"https://api.github.com/users/yhoonkim/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:00:06Z","updated_at":"2015-01-01T15:00:06Z","closed_at":null,"body":"- [ ] comment\n- [ ] recommendation\n- [ ] share\n- [ ] RSS\n\n- [ ] Join\n\n- [ ] Own board\n\n- [ ] Interview with people who want to archieve own thought within own writings."}},"public":true,"created_at":"2015-01-01T15:00:06Z"}
,{"id":"2489651093","type":"WatchEvent","actor":{"id":546301,"login":"unicomp21","gravatar_id":"","url":"https://api.github.com/users/unicomp21","avatar_url":"https://avatars.githubusercontent.com/u/546301?"},"repo":{"id":10635999,"name":"dartist/raytracer","url":"https://api.github.com/repos/dartist/raytracer"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:00:06Z","org":{"id":3138716,"login":"dartist","gravatar_id":"","url":"https://api.github.com/orgs/dartist","avatar_url":"https://avatars.githubusercontent.com/u/3138716?"}}
,{"id":"2489651095","type":"CreateEvent","actor":{"id":2339563,"login":"SundeepK","gravatar_id":"","url":"https://api.github.com/users/SundeepK","avatar_url":"https://avatars.githubusercontent.com/u/2339563?"},"repo":{"id":19470044,"name":"SundeepK/Clone","url":"https://api.github.com/repos/SundeepK/Clone"},"payload":{"ref":"wip/refactor_level_loading_code","ref_type":"branch","master_branch":"master","description":"Clone is a physics based platformer. ","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:00:07Z"}
,{"id":"2489651096","type":"PullRequestEvent","actor":{"id":10357835,"login":"mevlan","gravatar_id":"","url":"https://api.github.com/users/mevlan","avatar_url":"https://avatars.githubusercontent.com/u/10357835?"},"repo":{"id":28668460,"name":"mevlan/script","url":"https://api.github.com/repos/mevlan/script"},"payload":{"action":"opened","number":3,"pull_request":{"url":"https://api.github.com/repos/mevlan/script/pulls/3","id":26743766,"html_url":"https://github.com/mevlan/script/pull/3","diff_url":"https://github.com/mevlan/script/pull/3.diff","patch_url":"https://github.com/mevlan/script/pull/3.patch","issue_url":"https://api.github.com/repos/mevlan/script/issues/3","number":3,"state":"open","locked":false,"title":"final function","user":{"login":"mevlan","id":10357835,"avatar_url":"https://avatars.githubusercontent.com/u/10357835?v=3","gravatar_id":"","url":"https://api.github.com/users/mevlan","html_url":"https://github.com/mevlan","followers_url":"https://api.github.com/users/mevlan/followers","following_url":"https://api.github.com/users/mevlan/following{/other_user}","gists_url":"https://api.github.com/users/mevlan/gists{/gist_id}","starred_url":"https://api.github.com/users/mevlan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mevlan/subscriptions","organizations_url":"https://api.github.com/users/mevlan/orgs","repos_url":"https://api.github.com/users/mevlan/repos","events_url":"https://api.github.com/users/mevlan/events{/privacy}","received_events_url":"https://api.github.com/users/mevlan/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:00:07Z","updated_at":"2015-01-01T15:00:07Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/mevlan/script/pulls/3/commits","review_comments_url":"https://api.github.com/repos/mevlan/script/pulls/3/comments","review_comment_url":"https://api.github.com/repos/mevlan/script/pulls/comments/{number}","comments_url":"https://api.github.com/repos/mevlan/script/issues/3/comments","statuses_url":"https://api.github.com/repos/mevlan/script/statuses/fecf568375c53fd0bf03eb4e81c821214077f41c","head":{"label":"mevlan:final","ref":"final","sha":"fecf568375c53fd0bf03eb4e81c821214077f41c","user":{"login":"mevlan","id":10357835,"avatar_url":"https://avatars.githubusercontent.com/u/10357835?v=3","gravatar_id":"","url":"https://api.github.com/users/mevlan","html_url":"https://github.com/mevlan","followers_url":"https://api.github.com/users/mevlan/followers","following_url":"https://api.github.com/users/mevlan/following{/other_user}","gists_url":"https://api.github.com/users/mevlan/gists{/gist_id}","starred_url":"https://api.github.com/users/mevlan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mevlan/subscriptions","organizations_url":"https://api.github.com/users/mevlan/orgs","repos_url":"https://api.github.com/users/mevlan/repos","events_url":"https://api.github.com/users/mevlan/events{/privacy}","received_events_url":"https://api.github.com/users/mevlan/received_events","type":"User","site_admin":false},"repo":{"id":28668460,"name":"script","full_name":"mevlan/script","owner":{"login":"mevlan","id":10357835,"avatar_url":"https://avatars.githubusercontent.com/u/10357835?v=3","gravatar_id":"","url":"https://api.github.com/users/mevlan","html_url":"https://github.com/mevlan","followers_url":"https://api.github.com/users/mevlan/followers","following_url":"https://api.github.com/users/mevlan/following{/other_user}","gists_url":"https://api.github.com/users/mevlan/gists{/gist_id}","starred_url":"https://api.github.com/users/mevlan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mevlan/subscriptions","organizations_url":"https://api.github.com/users/mevlan/orgs","repos_url":"https://api.github.com/users/mevlan/repos","events_url":"https://api.github.com/users/mevlan/events{/privacy}","received_events_url":"https://api.github.com/users/mevlan/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/mevlan/script","description":"","fork":false,"url":"https://api.github.com/repos/mevlan/script","forks_url":"https://api.github.com/repos/mevlan/script/forks","keys_url":"https://api.github.com/repos/mevlan/script/keys{/key_id}","collaborators_url":"https://api.github.com/repos/mevlan/script/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/mevlan/script/teams","hooks_url":"https://api.github.com/repos/mevlan/script/hooks","issue_events_url":"https://api.github.com/repos/mevlan/script/issues/events{/number}","events_url":"https://api.github.com/repos/mevlan/script/events","assignees_url":"https://api.github.com/repos/mevlan/script/assignees{/user}","branches_url":"https://api.github.com/repos/mevlan/script/branches{/branch}","tags_url":"https://api.github.com/repos/mevlan/script/tags","blobs_url":"https://api.github.com/repos/mevlan/script/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/mevlan/script/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/mevlan/script/git/refs{/sha}","trees_url":"https://api.github.com/repos/mevlan/script/git/trees{/sha}","statuses_url":"https://api.github.com/repos/mevlan/script/statuses/{sha}","languages_url":"https://api.github.com/repos/mevlan/script/languages","stargazers_url":"https://api.github.com/repos/mevlan/script/stargazers","contributors_url":"https://api.github.com/repos/mevlan/script/contributors","subscribers_url":"https://api.github.com/repos/mevlan/script/subscribers","subscription_url":"https://api.github.com/repos/mevlan/script/subscription","commits_url":"https://api.github.com/repos/mevlan/script/commits{/sha}","git_commits_url":"https://api.github.com/repos/mevlan/script/git/commits{/sha}","comments_url":"https://api.github.com/repos/mevlan/script/comments{/number}","issue_comment_url":"https://api.github.com/repos/mevlan/script/issues/comments/{number}","contents_url":"https://api.github.com/repos/mevlan/script/contents/{+path}","compare_url":"https://api.github.com/repos/mevlan/script/compare/{base}...{head}","merges_url":"https://api.github.com/repos/mevlan/script/merges","archive_url":"https://api.github.com/repos/mevlan/script/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/mevlan/script/downloads","issues_url":"https://api.github.com/repos/mevlan/script/issues{/number}","pulls_url":"https://api.github.com/repos/mevlan/script/pulls{/number}","milestones_url":"https://api.github.com/repos/mevlan/script/milestones{/number}","notifications_url":"https://api.github.com/repos/mevlan/script/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/mevlan/script/labels{/name}","releases_url":"https://api.github.com/repos/mevlan/script/releases{/id}","created_at":"2014-12-31T15:07:24Z","updated_at":"2015-01-01T13:45:43Z","pushed_at":"2015-01-01T14:59:30Z","git_url":"git://github.com/mevlan/script.git","ssh_url":"git@github.com:mevlan/script.git","clone_url":"https://github.com/mevlan/script.git","svn_url":"https://github.com/mevlan/script","homepage":null,"size":0,"stargazers_count":0,"watchers_count":0,"language":"Python","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":1,"forks":0,"open_issues":1,"watchers":0,"default_branch":"master"}},"base":{"label":"mevlan:master","ref":"master","sha":"37c36e72ff50a69ac6158eb9695352a9b14a15f5","user":{"login":"mevlan","id":10357835,"avatar_url":"https://avatars.githubusercontent.com/u/10357835?v=3","gravatar_id":"","url":"https://api.github.com/users/mevlan","html_url":"https://github.com/mevlan","followers_url":"https://api.github.com/users/mevlan/followers","following_url":"https://api.github.com/users/mevlan/following{/other_user}","gists_url":"https://api.github.com/users/mevlan/gists{/gist_id}","starred_url":"https://api.github.com/users/mevlan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mevlan/subscriptions","organizations_url":"https://api.github.com/users/mevlan/orgs","repos_url":"https://api.github.com/users/mevlan/repos","events_url":"https://api.github.com/users/mevlan/events{/privacy}","received_events_url":"https://api.github.com/users/mevlan/received_events","type":"User","site_admin":false},"repo":{"id":28668460,"name":"script","full_name":"mevlan/script","owner":{"login":"mevlan","id":10357835,"avatar_url":"https://avatars.githubusercontent.com/u/10357835?v=3","gravatar_id":"","url":"https://api.github.com/users/mevlan","html_url":"https://github.com/mevlan","followers_url":"https://api.github.com/users/mevlan/followers","following_url":"https://api.github.com/users/mevlan/following{/other_user}","gists_url":"https://api.github.com/users/mevlan/gists{/gist_id}","starred_url":"https://api.github.com/users/mevlan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mevlan/subscriptions","organizations_url":"https://api.github.com/users/mevlan/orgs","repos_url":"https://api.github.com/users/mevlan/repos","events_url":"https://api.github.com/users/mevlan/events{/privacy}","received_events_url":"https://api.github.com/users/mevlan/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/mevlan/script","description":"","fork":false,"url":"https://api.github.com/repos/mevlan/script","forks_url":"https://api.github.com/repos/mevlan/script/forks","keys_url":"https://api.github.com/repos/mevlan/script/keys{/key_id}","collaborators_url":"https://api.github.com/repos/mevlan/script/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/mevlan/script/teams","hooks_url":"https://api.github.com/repos/mevlan/script/hooks","issue_events_url":"https://api.github.com/repos/mevlan/script/issues/events{/number}","events_url":"https://api.github.com/repos/mevlan/script/events","assignees_url":"https://api.github.com/repos/mevlan/script/assignees{/user}","branches_url":"https://api.github.com/repos/mevlan/script/branches{/branch}","tags_url":"https://api.github.com/repos/mevlan/script/tags","blobs_url":"https://api.github.com/repos/mevlan/script/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/mevlan/script/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/mevlan/script/git/refs{/sha}","trees_url":"https://api.github.com/repos/mevlan/script/git/trees{/sha}","statuses_url":"https://api.github.com/repos/mevlan/script/statuses/{sha}","languages_url":"https://api.github.com/repos/mevlan/script/languages","stargazers_url":"https://api.github.com/repos/mevlan/script/stargazers","contributors_url":"https://api.github.com/repos/mevlan/script/contributors","subscribers_url":"https://api.github.com/repos/mevlan/script/subscribers","subscription_url":"https://api.github.com/repos/mevlan/script/subscription","commits_url":"https://api.github.com/repos/mevlan/script/commits{/sha}","git_commits_url":"https://api.github.com/repos/mevlan/script/git/commits{/sha}","comments_url":"https://api.github.com/repos/mevlan/script/comments{/number}","issue_comment_url":"https://api.github.com/repos/mevlan/script/issues/comments/{number}","contents_url":"https://api.github.com/repos/mevlan/script/contents/{+path}","compare_url":"https://api.github.com/repos/mevlan/script/compare/{base}...{head}","merges_url":"https://api.github.com/repos/mevlan/script/merges","archive_url":"https://api.github.com/repos/mevlan/script/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/mevlan/script/downloads","issues_url":"https://api.github.com/repos/mevlan/script/issues{/number}","pulls_url":"https://api.github.com/repos/mevlan/script/pulls{/number}","milestones_url":"https://api.github.com/repos/mevlan/script/milestones{/number}","notifications_url":"https://api.github.com/repos/mevlan/script/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/mevlan/script/labels{/name}","releases_url":"https://api.github.com/repos/mevlan/script/releases{/id}","created_at":"2014-12-31T15:07:24Z","updated_at":"2015-01-01T13:45:43Z","pushed_at":"2015-01-01T14:59:30Z","git_url":"git://github.com/mevlan/script.git","ssh_url":"git@github.com:mevlan/script.git","clone_url":"https://github.com/mevlan/script.git","svn_url":"https://github.com/mevlan/script","homepage":null,"size":0,"stargazers_count":0,"watchers_count":0,"language":"Python","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":1,"forks":0,"open_issues":1,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/mevlan/script/pulls/3"},"html":{"href":"https://github.com/mevlan/script/pull/3"},"issue":{"href":"https://api.github.com/repos/mevlan/script/issues/3"},"comments":{"href":"https://api.github.com/repos/mevlan/script/issues/3/comments"},"review_comments":{"href":"https://api.github.com/repos/mevlan/script/pulls/3/comments"},"review_comment":{"href":"https://api.github.com/repos/mevlan/script/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/mevlan/script/pulls/3/commits"},"statuses":{"href":"https://api.github.com/repos/mevlan/script/statuses/fecf568375c53fd0bf03eb4e81c821214077f41c"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":1,"additions":3,"deletions":0,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:00:08Z"}
,{"id":"2489651097","type":"PullRequestEvent","actor":{"id":1258383,"login":"suneg","gravatar_id":"","url":"https://api.github.com/users/suneg","avatar_url":"https://avatars.githubusercontent.com/u/1258383?"},"repo":{"id":28608107,"name":"suneg/dojo_rules","url":"https://api.github.com/repos/suneg/dojo_rules"},"payload":{"action":"closed","number":3,"pull_request":{"url":"https://api.github.com/repos/suneg/dojo_rules/pulls/3","id":26743725,"html_url":"https://github.com/suneg/dojo_rules/pull/3","diff_url":"https://github.com/suneg/dojo_rules/pull/3.diff","patch_url":"https://github.com/suneg/dojo_rules/pull/3.patch","issue_url":"https://api.github.com/repos/suneg/dojo_rules/issues/3","number":3,"state":"closed","locked":false,"title":"Too many people are spilling coffee","user":{"login":"codeschool-kiddo","id":7882662,"avatar_url":"https://avatars.githubusercontent.com/u/7882662?v=3","gravatar_id":"","url":"https://api.github.com/users/codeschool-kiddo","html_url":"https://github.com/codeschool-kiddo","followers_url":"https://api.github.com/users/codeschool-kiddo/followers","following_url":"https://api.github.com/users/codeschool-kiddo/following{/other_user}","gists_url":"https://api.github.com/users/codeschool-kiddo/gists{/gist_id}","starred_url":"https://api.github.com/users/codeschool-kiddo/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/codeschool-kiddo/subscriptions","organizations_url":"https://api.github.com/users/codeschool-kiddo/orgs","repos_url":"https://api.github.com/users/codeschool-kiddo/repos","events_url":"https://api.github.com/users/codeschool-kiddo/events{/privacy}","received_events_url":"https://api.github.com/users/codeschool-kiddo/received_events","type":"User","site_admin":false},"body":null,"created_at":"2015-01-01T14:54:31Z","updated_at":"2015-01-01T15:00:07Z","closed_at":"2015-01-01T15:00:07Z","merged_at":"2015-01-01T15:00:07Z","merge_commit_sha":"65bb5ef3bd6f94c8a789b6f1054fe0b6c157e5f2","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/suneg/dojo_rules/pulls/3/commits","review_comments_url":"https://api.github.com/repos/suneg/dojo_rules/pulls/3/comments","review_comment_url":"https://api.github.com/repos/suneg/dojo_rules/pulls/comments/{number}","comments_url":"https://api.github.com/repos/suneg/dojo_rules/issues/3/comments","statuses_url":"https://api.github.com/repos/suneg/dojo_rules/statuses/42758f219a36e5147f6c294be3a42b9e76c469aa","head":{"label":"suneg:new_rules","ref":"new_rules","sha":"42758f219a36e5147f6c294be3a42b9e76c469aa","user":{"login":"suneg","id":1258383,"avatar_url":"https://avatars.githubusercontent.com/u/1258383?v=3","gravatar_id":"","url":"https://api.github.com/users/suneg","html_url":"https://github.com/suneg","followers_url":"https://api.github.com/users/suneg/followers","following_url":"https://api.github.com/users/suneg/following{/other_user}","gists_url":"https://api.github.com/users/suneg/gists{/gist_id}","starred_url":"https://api.github.com/users/suneg/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/suneg/subscriptions","organizations_url":"https://api.github.com/users/suneg/orgs","repos_url":"https://api.github.com/users/suneg/repos","events_url":"https://api.github.com/users/suneg/events{/privacy}","received_events_url":"https://api.github.com/users/suneg/received_events","type":"User","site_admin":false},"repo":{"id":28608107,"name":"dojo_rules","full_name":"suneg/dojo_rules","owner":{"login":"suneg","id":1258383,"avatar_url":"https://avatars.githubusercontent.com/u/1258383?v=3","gravatar_id":"","url":"https://api.github.com/users/suneg","html_url":"https://github.com/suneg","followers_url":"https://api.github.com/users/suneg/followers","following_url":"https://api.github.com/users/suneg/following{/other_user}","gists_url":"https://api.github.com/users/suneg/gists{/gist_id}","starred_url":"https://api.github.com/users/suneg/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/suneg/subscriptions","organizations_url":"https://api.github.com/users/suneg/orgs","repos_url":"https://api.github.com/users/suneg/repos","events_url":"https://api.github.com/users/suneg/events{/privacy}","received_events_url":"https://api.github.com/users/suneg/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/suneg/dojo_rules","description":"","fork":true,"url":"https://api.github.com/repos/suneg/dojo_rules","forks_url":"https://api.github.com/repos/suneg/dojo_rules/forks","keys_url":"https://api.github.com/repos/suneg/dojo_rules/keys{/key_id}","collaborators_url":"https://api.github.com/repos/suneg/dojo_rules/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/suneg/dojo_rules/teams","hooks_url":"https://api.github.com/repos/suneg/dojo_rules/hooks","issue_events_url":"https://api.github.com/repos/suneg/dojo_rules/issues/events{/number}","events_url":"https://api.github.com/repos/suneg/dojo_rules/events","assignees_url":"https://api.github.com/repos/suneg/dojo_rules/assignees{/user}","branches_url":"https://api.github.com/repos/suneg/dojo_rules/branches{/branch}","tags_url":"https://api.github.com/repos/suneg/dojo_rules/tags","blobs_url":"https://api.github.com/repos/suneg/dojo_rules/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/suneg/dojo_rules/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/suneg/dojo_rules/git/refs{/sha}","trees_url":"https://api.github.com/repos/suneg/dojo_rules/git/trees{/sha}","statuses_url":"https://api.github.com/repos/suneg/dojo_rules/statuses/{sha}","languages_url":"https://api.github.com/repos/suneg/dojo_rules/languages","stargazers_url":"https://api.github.com/repos/suneg/dojo_rules/stargazers","contributors_url":"https://api.github.com/repos/suneg/dojo_rules/contributors","subscribers_url":"https://api.github.com/repos/suneg/dojo_rules/subscribers","subscription_url":"https://api.github.com/repos/suneg/dojo_rules/subscription","commits_url":"https://api.github.com/repos/suneg/dojo_rules/commits{/sha}","git_commits_url":"https://api.github.com/repos/suneg/dojo_rules/git/commits{/sha}","comments_url":"https://api.github.com/repos/suneg/dojo_rules/comments{/number}","issue_comment_url":"https://api.github.com/repos/suneg/dojo_rules/issues/comments/{number}","contents_url":"https://api.github.com/repos/suneg/dojo_rules/contents/{+path}","compare_url":"https://api.github.com/repos/suneg/dojo_rules/compare/{base}...{head}","merges_url":"https://api.github.com/repos/suneg/dojo_rules/merges","archive_url":"https://api.github.com/repos/suneg/dojo_rules/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/suneg/dojo_rules/downloads","issues_url":"https://api.github.com/repos/suneg/dojo_rules/issues{/number}","pulls_url":"https://api.github.com/repos/suneg/dojo_rules/pulls{/number}","milestones_url":"https://api.github.com/repos/suneg/dojo_rules/milestones{/number}","notifications_url":"https://api.github.com/repos/suneg/dojo_rules/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/suneg/dojo_rules/labels{/name}","releases_url":"https://api.github.com/repos/suneg/dojo_rules/releases{/id}","created_at":"2014-12-29T22:05:45Z","updated_at":"2015-01-01T14:53:56Z","pushed_at":"2015-01-01T15:00:07Z","git_url":"git://github.com/suneg/dojo_rules.git","ssh_url":"git@github.com:suneg/dojo_rules.git","clone_url":"https://github.com/suneg/dojo_rules.git","svn_url":"https://github.com/suneg/dojo_rules","homepage":null,"size":109,"stargazers_count":0,"watchers_count":0,"language":"Ruby","has_issues":false,"has_downloads":true,"has_wiki":true,"has_pages":true,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master"}},"base":{"label":"suneg:master","ref":"master","sha":"2baa568ca1cd4b0f85bec0da62ba659a6797d60c","user":{"login":"suneg","id":1258383,"avatar_url":"https://avatars.githubusercontent.com/u/1258383?v=3","gravatar_id":"","url":"https://api.github.com/users/suneg","html_url":"https://github.com/suneg","followers_url":"https://api.github.com/users/suneg/followers","following_url":"https://api.github.com/users/suneg/following{/other_user}","gists_url":"https://api.github.com/users/suneg/gists{/gist_id}","starred_url":"https://api.github.com/users/suneg/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/suneg/subscriptions","organizations_url":"https://api.github.com/users/suneg/orgs","repos_url":"https://api.github.com/users/suneg/repos","events_url":"https://api.github.com/users/suneg/events{/privacy}","received_events_url":"https://api.github.com/users/suneg/received_events","type":"User","site_admin":false},"repo":{"id":28608107,"name":"dojo_rules","full_name":"suneg/dojo_rules","owner":{"login":"suneg","id":1258383,"avatar_url":"https://avatars.githubusercontent.com/u/1258383?v=3","gravatar_id":"","url":"https://api.github.com/users/suneg","html_url":"https://github.com/suneg","followers_url":"https://api.github.com/users/suneg/followers","following_url":"https://api.github.com/users/suneg/following{/other_user}","gists_url":"https://api.github.com/users/suneg/gists{/gist_id}","starred_url":"https://api.github.com/users/suneg/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/suneg/subscriptions","organizations_url":"https://api.github.com/users/suneg/orgs","repos_url":"https://api.github.com/users/suneg/repos","events_url":"https://api.github.com/users/suneg/events{/privacy}","received_events_url":"https://api.github.com/users/suneg/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/suneg/dojo_rules","description":"","fork":true,"url":"https://api.github.com/repos/suneg/dojo_rules","forks_url":"https://api.github.com/repos/suneg/dojo_rules/forks","keys_url":"https://api.github.com/repos/suneg/dojo_rules/keys{/key_id}","collaborators_url":"https://api.github.com/repos/suneg/dojo_rules/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/suneg/dojo_rules/teams","hooks_url":"https://api.github.com/repos/suneg/dojo_rules/hooks","issue_events_url":"https://api.github.com/repos/suneg/dojo_rules/issues/events{/number}","events_url":"https://api.github.com/repos/suneg/dojo_rules/events","assignees_url":"https://api.github.com/repos/suneg/dojo_rules/assignees{/user}","branches_url":"https://api.github.com/repos/suneg/dojo_rules/branches{/branch}","tags_url":"https://api.github.com/repos/suneg/dojo_rules/tags","blobs_url":"https://api.github.com/repos/suneg/dojo_rules/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/suneg/dojo_rules/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/suneg/dojo_rules/git/refs{/sha}","trees_url":"https://api.github.com/repos/suneg/dojo_rules/git/trees{/sha}","statuses_url":"https://api.github.com/repos/suneg/dojo_rules/statuses/{sha}","languages_url":"https://api.github.com/repos/suneg/dojo_rules/languages","stargazers_url":"https://api.github.com/repos/suneg/dojo_rules/stargazers","contributors_url":"https://api.github.com/repos/suneg/dojo_rules/contributors","subscribers_url":"https://api.github.com/repos/suneg/dojo_rules/subscribers","subscription_url":"https://api.github.com/repos/suneg/dojo_rules/subscription","commits_url":"https://api.github.com/repos/suneg/dojo_rules/commits{/sha}","git_commits_url":"https://api.github.com/repos/suneg/dojo_rules/git/commits{/sha}","comments_url":"https://api.github.com/repos/suneg/dojo_rules/comments{/number}","issue_comment_url":"https://api.github.com/repos/suneg/dojo_rules/issues/comments/{number}","contents_url":"https://api.github.com/repos/suneg/dojo_rules/contents/{+path}","compare_url":"https://api.github.com/repos/suneg/dojo_rules/compare/{base}...{head}","merges_url":"https://api.github.com/repos/suneg/dojo_rules/merges","archive_url":"https://api.github.com/repos/suneg/dojo_rules/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/suneg/dojo_rules/downloads","issues_url":"https://api.github.com/repos/suneg/dojo_rules/issues{/number}","pulls_url":"https://api.github.com/repos/suneg/dojo_rules/pulls{/number}","milestones_url":"https://api.github.com/repos/suneg/dojo_rules/milestones{/number}","notifications_url":"https://api.github.com/repos/suneg/dojo_rules/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/suneg/dojo_rules/labels{/name}","releases_url":"https://api.github.com/repos/suneg/dojo_rules/releases{/id}","created_at":"2014-12-29T22:05:45Z","updated_at":"2015-01-01T14:53:56Z","pushed_at":"2015-01-01T15:00:07Z","git_url":"git://github.com/suneg/dojo_rules.git","ssh_url":"git@github.com:suneg/dojo_rules.git","clone_url":"https://github.com/suneg/dojo_rules.git","svn_url":"https://github.com/suneg/dojo_rules","homepage":null,"size":109,"stargazers_count":0,"watchers_count":0,"language":"Ruby","has_issues":false,"has_downloads":true,"has_wiki":true,"has_pages":true,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/suneg/dojo_rules/pulls/3"},"html":{"href":"https://github.com/suneg/dojo_rules/pull/3"},"issue":{"href":"https://api.github.com/repos/suneg/dojo_rules/issues/3"},"comments":{"href":"https://api.github.com/repos/suneg/dojo_rules/issues/3/comments"},"review_comments":{"href":"https://api.github.com/repos/suneg/dojo_rules/pulls/3/comments"},"review_comment":{"href":"https://api.github.com/repos/suneg/dojo_rules/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/suneg/dojo_rules/pulls/3/commits"},"statuses":{"href":"https://api.github.com/repos/suneg/dojo_rules/statuses/42758f219a36e5147f6c294be3a42b9e76c469aa"}},"merged":true,"mergeable":null,"mergeable_state":"unknown","merged_by":{"login":"suneg","id":1258383,"avatar_url":"https://avatars.githubusercontent.com/u/1258383?v=3","gravatar_id":"","url":"https://api.github.com/users/suneg","html_url":"https://github.com/suneg","followers_url":"https://api.github.com/users/suneg/followers","following_url":"https://api.github.com/users/suneg/following{/other_user}","gists_url":"https://api.github.com/users/suneg/gists{/gist_id}","starred_url":"https://api.github.com/users/suneg/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/suneg/subscriptions","organizations_url":"https://api.github.com/users/suneg/orgs","repos_url":"https://api.github.com/users/suneg/repos","events_url":"https://api.github.com/users/suneg/events{/privacy}","received_events_url":"https://api.github.com/users/suneg/received_events","type":"User","site_admin":false},"comments":0,"review_comments":0,"commits":2,"additions":1,"deletions":0,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:00:08Z"}
,{"id":"2489651098","type":"CreateEvent","actor":{"id":803897,"login":"blang","gravatar_id":"","url":"https://api.github.com/users/blang","avatar_url":"https://avatars.githubusercontent.com/u/803897?"},"repo":{"id":28688598,"name":"blang/btrfs-initrd","url":"https://api.github.com/repos/blang/btrfs-initrd"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"Initrd creation to support boot from btrfs subvolume","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:00:08Z"}
,{"id":"2489651105","type":"PushEvent","actor":{"id":9381532,"login":"vatsaaa","gravatar_id":"","url":"https://api.github.com/users/vatsaaa","avatar_url":"https://avatars.githubusercontent.com/u/9381532?"},"repo":{"id":28673152,"name":"vatsaaa/mycodesnips","url":"https://api.github.com/repos/vatsaaa/mycodesnips"},"payload":{"push_id":536863994,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"d70741fcde9b233d93f25b3ece739774fe414280","before":"3c6408452dc2bed76993f673a6d368bd2510b563","commits":[{"sha":"d70741fcde9b233d93f25b3ece739774fe414280","author":{"email":"be51eeb01ab0ddac52571dd736dd0fd5d13a6a37@gmail.com","name":"Gudakesh Ankur Vatsa"},"message":"Update StrPalindrome.java","distinct":true,"url":"https://api.github.com/repos/vatsaaa/mycodesnips/commits/d70741fcde9b233d93f25b3ece739774fe414280"}]},"public":true,"created_at":"2015-01-01T15:00:08Z"}
,{"id":"2489651106","type":"PushEvent","actor":{"id":1258383,"login":"suneg","gravatar_id":"","url":"https://api.github.com/users/suneg","avatar_url":"https://avatars.githubusercontent.com/u/1258383?"},"repo":{"id":28608107,"name":"suneg/dojo_rules","url":"https://api.github.com/repos/suneg/dojo_rules"},"payload":{"push_id":536863995,"size":3,"distinct_size":1,"ref":"refs/heads/master","head":"e9a41f62b92cec922e5420eb1e1e78b7d8e69945","before":"2baa568ca1cd4b0f85bec0da62ba659a6797d60c","commits":[{"sha":"0be1f787c2d07a5b123148d67c88e676f7f88359","author":{"email":"2daaee2f17688248bee24305fe3e8f0de41a5a7c@users.noreply.github.com","name":"Code School Kiddo"},"message":"Added new rule about coffee","distinct":false,"url":"https://api.github.com/repos/suneg/dojo_rules/commits/0be1f787c2d07a5b123148d67c88e676f7f88359"},{"sha":"42758f219a36e5147f6c294be3a42b9e76c469aa","author":{"email":"f4bc00911934b6462d05e49320f476dd041507c1@gmail.com","name":"Sune Gynthersen"},"message":"fixed spelling errors","distinct":false,"url":"https://api.github.com/repos/suneg/dojo_rules/commits/42758f219a36e5147f6c294be3a42b9e76c469aa"},{"sha":"e9a41f62b92cec922e5420eb1e1e78b7d8e69945","author":{"email":"f4bc00911934b6462d05e49320f476dd041507c1@gmail.com","name":"Sune Gynthersen"},"message":"Merge pull request #3 from suneg/new_rules\n\nToo many people are spilling coffee","distinct":true,"url":"https://api.github.com/repos/suneg/dojo_rules/commits/e9a41f62b92cec922e5420eb1e1e78b7d8e69945"}]},"public":true,"created_at":"2015-01-01T15:00:08Z"}
,{"id":"2489651111","type":"PushEvent","actor":{"id":824460,"login":"sebhtml","gravatar_id":"","url":"https://api.github.com/users/sebhtml","avatar_url":"https://avatars.githubusercontent.com/u/824460?"},"repo":{"id":20075555,"name":"GeneAssembly/biosal","url":"https://api.github.com/repos/GeneAssembly/biosal"},"payload":{"push_id":536863998,"size":1,"distinct_size":1,"ref":"refs/heads/mirror","head":"b25e0c32cd070de8e20583c2c84584d7f6abb5ca","before":"9264d0b3d0fd22dff91756a5e4c0c6629bc9f53b","commits":[{"sha":"b25e0c32cd070de8e20583c2c84584d7f6abb5ca","author":{"email":"1a4d2e25eb5ba040b6ad5779a730a1a8a0ff9bc5@anl.gov","name":"Sébastien Boisvert"},"message":"tests: use 1024 nodes on Cetus for Spate tests\n\nSigned-off-by: Sébastien Boisvert <boisvert@anl.gov>","distinct":true,"url":"https://api.github.com/repos/GeneAssembly/biosal/commits/b25e0c32cd070de8e20583c2c84584d7f6abb5ca"}]},"public":true,"created_at":"2015-01-01T15:00:08Z","org":{"id":1619824,"login":"GeneAssembly","gravatar_id":"","url":"https://api.github.com/orgs/GeneAssembly","avatar_url":"https://avatars.githubusercontent.com/u/1619824?"}}
,{"id":"2489651112","type":"PushEvent","actor":{"id":6158630,"login":"greatfire","gravatar_id":"","url":"https://api.github.com/users/greatfire","avatar_url":"https://avatars.githubusercontent.com/u/6158630?"},"repo":{"id":15100395,"name":"greatfire/wiki","url":"https://api.github.com/repos/greatfire/wiki"},"payload":{"push_id":536863993,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"285f31f23dfe56b375350a6daa8b79afe65adbe7","before":"e4db023e33947e9ba331e2a953b53303769fd5ee","commits":[{"sha":"285f31f23dfe56b375350a6daa8b79afe65adbe7","author":{"email":"24bf68e341ce0fbd9259a5d51feed79682ea4eba@greatfire.org","name":"Ubuntu"},"message":"a","distinct":true,"url":"https://api.github.com/repos/greatfire/wiki/commits/285f31f23dfe56b375350a6daa8b79afe65adbe7"}]},"public":true,"created_at":"2015-01-01T15:00:08Z"}
,{"id":"2489651113","type":"PushEvent","actor":{"id":1014189,"login":"adamatan","gravatar_id":"","url":"https://api.github.com/users/adamatan","avatar_url":"https://avatars.githubusercontent.com/u/1014189?"},"repo":{"id":15119415,"name":"adamatan/flip_classroom_hackathon","url":"https://api.github.com/repos/adamatan/flip_classroom_hackathon"},"payload":{"push_id":536863999,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"a8b1b8230766f4ca79f95f40b73aafe8c63bd613","before":"f22d11cc5d26e2011a921879c37532a00cea8dee","commits":[{"sha":"a8b1b8230766f4ca79f95f40b73aafe8c63bd613","author":{"email":"4bb196dc33f06494f5fee5aac258cb1962ba5b84@http://the-openclass.org","name":"Flipped headless user"},"message":"Automated DB Backup","distinct":true,"url":"https://api.github.com/repos/adamatan/flip_classroom_hackathon/commits/a8b1b8230766f4ca79f95f40b73aafe8c63bd613"}]},"public":true,"created_at":"2015-01-01T15:00:08Z"}
,{"id":"2489651114","type":"WatchEvent","actor":{"id":1209286,"login":"lucker6666","gravatar_id":"","url":"https://api.github.com/users/lucker6666","avatar_url":"https://avatars.githubusercontent.com/u/1209286?"},"repo":{"id":25062303,"name":"googlesamples/android-testing","url":"https://api.github.com/repos/googlesamples/android-testing"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:00:08Z","org":{"id":7378196,"login":"googlesamples","gravatar_id":"","url":"https://api.github.com/orgs/googlesamples","avatar_url":"https://avatars.githubusercontent.com/u/7378196?"}}
,{"id":"2489651115","type":"PushEvent","actor":{"id":467030,"login":"walmik","gravatar_id":"","url":"https://api.github.com/users/walmik","avatar_url":"https://avatars.githubusercontent.com/u/467030?"},"repo":{"id":3484837,"name":"walmik/timer.jquery","url":"https://api.github.com/repos/walmik/timer.jquery"},"payload":{"push_id":536864000,"size":6,"distinct_size":0,"ref":"refs/heads/develop","head":"fcf2715634a85af52d7544203ed5792bf685e329","before":"a6a0f45aa19483b131302fb2c3b4c5a6fa56aa93","commits":[{"sha":"69f542fcf904635655629d1eb8cf19ab5cb0bbe0","author":{"email":"ba3bb99a804720090af3dfb3f52cedb18aef1d05@gmail.com","name":"Walmik Deshpande"},"message":"Merge pull request #17 from walmik/develop\n\nAdded blanket.js for code coverage","distinct":false,"url":"https://api.github.com/repos/walmik/timer.jquery/commits/69f542fcf904635655629d1eb8cf19ab5cb0bbe0"},{"sha":"e641c07de56e70d4ca48fb09a3a46c72f1cf5268","author":{"email":"ba3bb99a804720090af3dfb3f52cedb18aef1d05@gmail.com","name":"Walmik"},"message":"Merge branch 'develop'","distinct":false,"url":"https://api.github.com/repos/walmik/timer.jquery/commits/e641c07de56e70d4ca48fb09a3a46c72f1cf5268"},{"sha":"21210d0d48019e224534a6433c79be480db8519a","author":{"email":"ba3bb99a804720090af3dfb3f52cedb18aef1d05@gmail.com","name":"Walmik Deshpande"},"message":"Merge pull request #18 from walmik/develop\n\nAdded updateable message to tests page.","distinct":false,"url":"https://api.github.com/repos/walmik/timer.jquery/commits/21210d0d48019e224534a6433c79be480db8519a"},{"sha":"038940758ce5cd92d1c0815f39d6bd8ce1ebeb46","author":{"email":"ba3bb99a804720090af3dfb3f52cedb18aef1d05@gmail.com","name":"Walmik Deshpande"},"message":"Merge pull request #19 from walmik/develop\n\nAdded tests to validate duration syntax.","distinct":false,"url":"https://api.github.com/repos/walmik/timer.jquery/commits/038940758ce5cd92d1c0815f39d6bd8ce1ebeb46"},{"sha":"ebefc1f1dff3a63c6700775aa57b79a378bba118","author":{"email":"ba3bb99a804720090af3dfb3f52cedb18aef1d05@gmail.com","name":"Walmik Deshpande"},"message":"Merge pull request #20 from walmik/develop\n\nAdded test for reset timer functionality","distinct":false,"url":"https://api.github.com/repos/walmik/timer.jquery/commits/ebefc1f1dff3a63c6700775aa57b79a378bba118"},{"sha":"fcf2715634a85af52d7544203ed5792bf685e329","author":{"email":"ba3bb99a804720090af3dfb3f52cedb18aef1d05@gmail.com","name":"Walmik Deshpande"},"message":"Merge pull request #21 from walmik/develop\n\nFixed test for reset timer option. Bumped patch version.","distinct":false,"url":"https://api.github.com/repos/walmik/timer.jquery/commits/fcf2715634a85af52d7544203ed5792bf685e329"}]},"public":true,"created_at":"2015-01-01T15:00:08Z"}
,{"id":"2489651117","type":"PushEvent","actor":{"id":5409394,"login":"12AwsomeMan34","gravatar_id":"","url":"https://api.github.com/users/12AwsomeMan34","avatar_url":"https://avatars.githubusercontent.com/u/5409394?"},"repo":{"id":28595401,"name":"Laxamer/Txtr","url":"https://api.github.com/repos/Laxamer/Txtr"},"payload":{"push_id":536864001,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"c5e90551c0b6d3bad1d9e811e3cc5224150c7422","before":"ef5f7b7aa4126803349ed742e3807d49a77f3ff8","commits":[{"sha":"c5e90551c0b6d3bad1d9e811e3cc5224150c7422","author":{"email":"27bdc783d599ba566a59668de2199bec6c5cce54@yahoo.com","name":"12AwsomeMan34"},"message":"A slight name change\n\nPlus added else for the title if statement","distinct":true,"url":"https://api.github.com/repos/Laxamer/Txtr/commits/c5e90551c0b6d3bad1d9e811e3cc5224150c7422"}]},"public":true,"created_at":"2015-01-01T15:00:08Z","org":{"id":9970446,"login":"Laxamer","gravatar_id":"","url":"https://api.github.com/orgs/Laxamer","avatar_url":"https://avatars.githubusercontent.com/u/9970446?"}}
,{"id":"2489651119","type":"PushEvent","actor":{"id":6158630,"login":"greatfire","gravatar_id":"","url":"https://api.github.com/users/greatfire","avatar_url":"https://avatars.githubusercontent.com/u/6158630?"},"repo":{"id":18126008,"name":"greatfire/z","url":"https://api.github.com/repos/greatfire/z"},"payload":{"push_id":536864002,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"3a3f749dee0da674db13c946d2b74a1f4ded512b","before":"daf25c0ac91088991d8f878c36626214f09d24bb","commits":[{"sha":"3a3f749dee0da674db13c946d2b74a1f4ded512b","author":{"email":"24bf68e341ce0fbd9259a5d51feed79682ea4eba@greatfire.org","name":"Ubuntu"},"message":"a","distinct":true,"url":"https://api.github.com/repos/greatfire/z/commits/3a3f749dee0da674db13c946d2b74a1f4ded512b"}]},"public":true,"created_at":"2015-01-01T15:00:09Z"}
,{"id":"2489651120","type":"CreateEvent","actor":{"id":2059591,"login":"PhantomWolf","gravatar_id":"","url":"https://api.github.com/users/PhantomWolf","avatar_url":"https://avatars.githubusercontent.com/u/2059591?"},"repo":{"id":28592464,"name":"PhantomWolf/Whitelist-PAC-generator","url":"https://api.github.com/repos/PhantomWolf/Whitelist-PAC-generator"},"payload":{"ref":"devel","ref_type":"branch","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:00:09Z"}
,{"id":"2489651121","type":"PushEvent","actor":{"id":6508762,"login":"basheersubei","gravatar_id":"","url":"https://api.github.com/users/basheersubei","avatar_url":"https://avatars.githubusercontent.com/u/6508762?"},"repo":{"id":28687954,"name":"basheersubei/ofSamplesAndStuff","url":"https://api.github.com/repos/basheersubei/ofSamplesAndStuff"},"payload":{"push_id":536864004,"size":3,"distinct_size":3,"ref":"refs/heads/master","head":"d04b108b1b1a883435694b9c450c19b8bf34358f","before":"020b10a84565b7a8395ae81e03c4724407fdc4db","commits":[{"sha":"a7f524740196cdc1c7420b2fa1d661a420d052ba","author":{"email":"d4284d16376f6bed429fe984b0b82ad0f9d89ace@gmail.com","name":"Basheer Subei"},"message":"removes binaries and obj files, they shouldn't be in there, only source.","distinct":true,"url":"https://api.github.com/repos/basheersubei/ofSamplesAndStuff/commits/a7f524740196cdc1c7420b2fa1d661a420d052ba"},{"sha":"e3bdfd021422af7f1efb60cadcb667a3e962563e","author":{"email":"d4284d16376f6bed429fe984b0b82ad0f9d89ace@gmail.com","name":"Basheer Subei"},"message":"Merge branch 'master' of\nhttps://github.com/basheersubei/ofSamplesAndStuff","distinct":true,"url":"https://api.github.com/repos/basheersubei/ofSamplesAndStuff/commits/e3bdfd021422af7f1efb60cadcb667a3e962563e"},{"sha":"d04b108b1b1a883435694b9c450c19b8bf34358f","author":{"email":"d4284d16376f6bed429fe984b0b82ad0f9d89ace@gmail.com","name":"Basheer Subei"},"message":"Merge branch 'master' of https://github.com/basheersubei/ofSamplesAndStuff","distinct":true,"url":"https://api.github.com/repos/basheersubei/ofSamplesAndStuff/commits/d04b108b1b1a883435694b9c450c19b8bf34358f"}]},"public":true,"created_at":"2015-01-01T15:00:09Z"}
,{"id":"2489651123","type":"PushEvent","actor":{"id":926454,"login":"lukeis","gravatar_id":"","url":"https://api.github.com/users/lukeis","avatar_url":"https://avatars.githubusercontent.com/u/926454?"},"repo":{"id":9457897,"name":"SeleniumHQ/irc-logs","url":"https://api.github.com/repos/SeleniumHQ/irc-logs"},"payload":{"push_id":536864006,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"42b668380d07c94d83beb1ce1b4ff91109e6a022","before":"ac71511ce5919e10e7f8001e7f1a32d360943e4f","commits":[{"sha":"42b668380d07c94d83beb1ce1b4ff91109e6a022","author":{"email":"c7f2353e77fbd59227c091422ca81210965ba01d","name":"selloggingbot"},"message":"updating logs","distinct":true,"url":"https://api.github.com/repos/SeleniumHQ/irc-logs/commits/42b668380d07c94d83beb1ce1b4ff91109e6a022"}]},"public":true,"created_at":"2015-01-01T15:00:09Z","org":{"id":983927,"login":"SeleniumHQ","gravatar_id":"","url":"https://api.github.com/orgs/SeleniumHQ","avatar_url":"https://avatars.githubusercontent.com/u/983927?"}}
,{"id":"2489651126","type":"IssuesEvent","actor":{"id":10162972,"login":"s3408669","gravatar_id":"","url":"https://api.github.com/users/s3408669","avatar_url":"https://avatars.githubusercontent.com/u/10162972?"},"repo":{"id":12382547,"name":"sheimi/SGit","url":"https://api.github.com/repos/sheimi/SGit"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/sheimi/SGit/issues/131","labels_url":"https://api.github.com/repos/sheimi/SGit/issues/131/labels{/name}","comments_url":"https://api.github.com/repos/sheimi/SGit/issues/131/comments","events_url":"https://api.github.com/repos/sheimi/SGit/issues/131/events","html_url":"https://github.com/sheimi/SGit/issues/131","id":53221336,"number":131,"title":"Directly delete a repository from Android/data/me.scheimi/files/repo but that repository still shows in the user interface of SGit","user":{"login":"s3408669","id":10162972,"avatar_url":"https://avatars.githubusercontent.com/u/10162972?v=3","gravatar_id":"","url":"https://api.github.com/users/s3408669","html_url":"https://github.com/s3408669","followers_url":"https://api.github.com/users/s3408669/followers","following_url":"https://api.github.com/users/s3408669/following{/other_user}","gists_url":"https://api.github.com/users/s3408669/gists{/gist_id}","starred_url":"https://api.github.com/users/s3408669/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/s3408669/subscriptions","organizations_url":"https://api.github.com/users/s3408669/orgs","repos_url":"https://api.github.com/users/s3408669/repos","events_url":"https://api.github.com/users/s3408669/events{/privacy}","received_events_url":"https://api.github.com/users/s3408669/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:00:09Z","updated_at":"2015-01-01T15:00:09Z","closed_at":null,"body":"Steps to reproduce:\r\n- Go to Android/data/me.scheimi.sgit/files/repo.\r\n- Remove a repository.\r\n- Go back to SGit\r\n\r\nOutput:\r\n- SGit cannot detect that the repo has been deleted and still show the repo in the user interface. \r\n- When choose that repo, the toast message shows that \r\n\"Repositoy not found (there may be something wrong with this repo)."}},"public":true,"created_at":"2015-01-01T15:00:10Z"}
,{"id":"2489651127","type":"PushEvent","actor":{"id":1459915,"login":"xtuaok","gravatar_id":"","url":"https://api.github.com/users/xtuaok","avatar_url":"https://avatars.githubusercontent.com/u/1459915?"},"repo":{"id":6719841,"name":"xtuaok/twitter_track_following","url":"https://api.github.com/repos/xtuaok/twitter_track_following"},"payload":{"push_id":536864008,"size":1,"distinct_size":1,"ref":"refs/heads/xtuaok","head":"afb8afe306c7893d93d383a06e4d9df53b41bf47","before":"4671b4868f1a060f2ed64d8268cd22d514a84e63","commits":[{"sha":"afb8afe306c7893d93d383a06e4d9df53b41bf47","author":{"email":"47cb89439b2d6961b59dff4298e837f67aa77389@gmail.com","name":"Tomonori Tamagawa"},"message":"Update ID 949438177\n\n - screen_name: chomado\n - name: ちょまど@初詣おみくじ凶\n - description: ( *゚▽゚* っ)З腐女子!絵描き!| H26新卒文系SE (入社して4ヶ月目の8月にSIer(適応障害になった)を辞職し開発者に転職) | H26秋応用情報合格!| 自作bot (in PHP) chomado_bot | プログラミングガチ初心者\n - location:","distinct":true,"url":"https://api.github.com/repos/xtuaok/twitter_track_following/commits/afb8afe306c7893d93d383a06e4d9df53b41bf47"}]},"public":true,"created_at":"2015-01-01T15:00:10Z"}
,{"id":"2489651128","type":"ForkEvent","actor":{"id":1757814,"login":"Soufien","gravatar_id":"","url":"https://api.github.com/users/Soufien","avatar_url":"https://avatars.githubusercontent.com/u/1757814?"},"repo":{"id":25873041,"name":"wasabeef/awesome-android-libraries","url":"https://api.github.com/repos/wasabeef/awesome-android-libraries"},"payload":{"forkee":{"id":28688599,"name":"awesome-android-libraries","full_name":"Soufien/awesome-android-libraries","owner":{"login":"Soufien","id":1757814,"avatar_url":"https://avatars.githubusercontent.com/u/1757814?v=3","gravatar_id":"","url":"https://api.github.com/users/Soufien","html_url":"https://github.com/Soufien","followers_url":"https://api.github.com/users/Soufien/followers","following_url":"https://api.github.com/users/Soufien/following{/other_user}","gists_url":"https://api.github.com/users/Soufien/gists{/gist_id}","starred_url":"https://api.github.com/users/Soufien/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Soufien/subscriptions","organizations_url":"https://api.github.com/users/Soufien/orgs","repos_url":"https://api.github.com/users/Soufien/repos","events_url":"https://api.github.com/users/Soufien/events{/privacy}","received_events_url":"https://api.github.com/users/Soufien/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/Soufien/awesome-android-libraries","description":"This is an alphabetical list of libraries for Android development, the majority being actively maintained.","fork":true,"url":"https://api.github.com/repos/Soufien/awesome-android-libraries","forks_url":"https://api.github.com/repos/Soufien/awesome-android-libraries/forks","keys_url":"https://api.github.com/repos/Soufien/awesome-android-libraries/keys{/key_id}","collaborators_url":"https://api.github.com/repos/Soufien/awesome-android-libraries/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/Soufien/awesome-android-libraries/teams","hooks_url":"https://api.github.com/repos/Soufien/awesome-android-libraries/hooks","issue_events_url":"https://api.github.com/repos/Soufien/awesome-android-libraries/issues/events{/number}","events_url":"https://api.github.com/repos/Soufien/awesome-android-libraries/events","assignees_url":"https://api.github.com/repos/Soufien/awesome-android-libraries/assignees{/user}","branches_url":"https://api.github.com/repos/Soufien/awesome-android-libraries/branches{/branch}","tags_url":"https://api.github.com/repos/Soufien/awesome-android-libraries/tags","blobs_url":"https://api.github.com/repos/Soufien/awesome-android-libraries/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/Soufien/awesome-android-libraries/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/Soufien/awesome-android-libraries/git/refs{/sha}","trees_url":"https://api.github.com/repos/Soufien/awesome-android-libraries/git/trees{/sha}","statuses_url":"https://api.github.com/repos/Soufien/awesome-android-libraries/statuses/{sha}","languages_url":"https://api.github.com/repos/Soufien/awesome-android-libraries/languages","stargazers_url":"https://api.github.com/repos/Soufien/awesome-android-libraries/stargazers","contributors_url":"https://api.github.com/repos/Soufien/awesome-android-libraries/contributors","subscribers_url":"https://api.github.com/repos/Soufien/awesome-android-libraries/subscribers","subscription_url":"https://api.github.com/repos/Soufien/awesome-android-libraries/subscription","commits_url":"https://api.github.com/repos/Soufien/awesome-android-libraries/commits{/sha}","git_commits_url":"https://api.github.com/repos/Soufien/awesome-android-libraries/git/commits{/sha}","comments_url":"https://api.github.com/repos/Soufien/awesome-android-libraries/comments{/number}","issue_comment_url":"https://api.github.com/repos/Soufien/awesome-android-libraries/issues/comments/{number}","contents_url":"https://api.github.com/repos/Soufien/awesome-android-libraries/contents/{+path}","compare_url":"https://api.github.com/repos/Soufien/awesome-android-libraries/compare/{base}...{head}","merges_url":"https://api.github.com/repos/Soufien/awesome-android-libraries/merges","archive_url":"https://api.github.com/repos/Soufien/awesome-android-libraries/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/Soufien/awesome-android-libraries/downloads","issues_url":"https://api.github.com/repos/Soufien/awesome-android-libraries/issues{/number}","pulls_url":"https://api.github.com/repos/Soufien/awesome-android-libraries/pulls{/number}","milestones_url":"https://api.github.com/repos/Soufien/awesome-android-libraries/milestones{/number}","notifications_url":"https://api.github.com/repos/Soufien/awesome-android-libraries/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/Soufien/awesome-android-libraries/labels{/name}","releases_url":"https://api.github.com/repos/Soufien/awesome-android-libraries/releases{/id}","created_at":"2015-01-01T15:00:10Z","updated_at":"2015-01-01T15:00:05Z","pushed_at":"2014-12-30T10:07:06Z","git_url":"git://github.com/Soufien/awesome-android-libraries.git","ssh_url":"git@github.com:Soufien/awesome-android-libraries.git","clone_url":"https://github.com/Soufien/awesome-android-libraries.git","svn_url":"https://github.com/Soufien/awesome-android-libraries","homepage":"https://twitter.com/wasabeef_jp","size":259,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":false,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master","public":true}},"public":true,"created_at":"2015-01-01T15:00:10Z"}
,{"id":"2489651130","type":"PullRequestEvent","actor":{"id":732452,"login":"bscSCORM","gravatar_id":"","url":"https://api.github.com/users/bscSCORM","avatar_url":"https://avatars.githubusercontent.com/u/732452?"},"repo":{"id":5452699,"name":"RusticiSoftware/TinCanJS","url":"https://api.github.com/repos/RusticiSoftware/TinCanJS"},"payload":{"action":"closed","number":97,"pull_request":{"url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/pulls/97","id":25667344,"html_url":"https://github.com/RusticiSoftware/TinCanJS/pull/97","diff_url":"https://github.com/RusticiSoftware/TinCanJS/pull/97.diff","patch_url":"https://github.com/RusticiSoftware/TinCanJS/pull/97.patch","issue_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/issues/97","number":97,"state":"closed","locked":false,"title":"Allow forced no registration and POST method for setState","user":{"login":"garemoko","id":1363163,"avatar_url":"https://avatars.githubusercontent.com/u/1363163?v=3","gravatar_id":"","url":"https://api.github.com/users/garemoko","html_url":"https://github.com/garemoko","followers_url":"https://api.github.com/users/garemoko/followers","following_url":"https://api.github.com/users/garemoko/following{/other_user}","gists_url":"https://api.github.com/users/garemoko/gists{/gist_id}","starred_url":"https://api.github.com/users/garemoko/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/garemoko/subscriptions","organizations_url":"https://api.github.com/users/garemoko/orgs","repos_url":"https://api.github.com/users/garemoko/repos","events_url":"https://api.github.com/users/garemoko/events{/privacy}","received_events_url":"https://api.github.com/users/garemoko/received_events","type":"User","site_admin":false},"body":"Allow the AP to explicitly store a state document with no registration by passing a registration of null in the configuration.\r\n\r\nAllow the AP to specify it wants to use POST instead of PUT for application/json.\r\n\r\nSupersedes https://github.com/RusticiSoftware/TinCanJS/pull/93","created_at":"2014-12-08T13:59:20Z","updated_at":"2015-01-01T15:00:10Z","closed_at":"2015-01-01T15:00:10Z","merged_at":"2015-01-01T15:00:10Z","merge_commit_sha":"be5df8f1232f43105acae8d0ed6653fdf87aefc5","assignee":{"login":"bscSCORM","id":732452,"avatar_url":"https://avatars.githubusercontent.com/u/732452?v=3","gravatar_id":"","url":"https://api.github.com/users/bscSCORM","html_url":"https://github.com/bscSCORM","followers_url":"https://api.github.com/users/bscSCORM/followers","following_url":"https://api.github.com/users/bscSCORM/following{/other_user}","gists_url":"https://api.github.com/users/bscSCORM/gists{/gist_id}","starred_url":"https://api.github.com/users/bscSCORM/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bscSCORM/subscriptions","organizations_url":"https://api.github.com/users/bscSCORM/orgs","repos_url":"https://api.github.com/users/bscSCORM/repos","events_url":"https://api.github.com/users/bscSCORM/events{/privacy}","received_events_url":"https://api.github.com/users/bscSCORM/received_events","type":"User","site_admin":false},"milestone":null,"commits_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/pulls/97/commits","review_comments_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/pulls/97/comments","review_comment_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/pulls/comments/{number}","comments_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/issues/97/comments","statuses_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/statuses/c2073e24bc12351cec96ccfc7b97ef34ed32287c","head":{"label":"garemoko:setState_squashed","ref":"setState_squashed","sha":"c2073e24bc12351cec96ccfc7b97ef34ed32287c","user":{"login":"garemoko","id":1363163,"avatar_url":"https://avatars.githubusercontent.com/u/1363163?v=3","gravatar_id":"","url":"https://api.github.com/users/garemoko","html_url":"https://github.com/garemoko","followers_url":"https://api.github.com/users/garemoko/followers","following_url":"https://api.github.com/users/garemoko/following{/other_user}","gists_url":"https://api.github.com/users/garemoko/gists{/gist_id}","starred_url":"https://api.github.com/users/garemoko/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/garemoko/subscriptions","organizations_url":"https://api.github.com/users/garemoko/orgs","repos_url":"https://api.github.com/users/garemoko/repos","events_url":"https://api.github.com/users/garemoko/events{/privacy}","received_events_url":"https://api.github.com/users/garemoko/received_events","type":"User","site_admin":false},"repo":{"id":23806425,"name":"TinCanJS","full_name":"garemoko/TinCanJS","owner":{"login":"garemoko","id":1363163,"avatar_url":"https://avatars.githubusercontent.com/u/1363163?v=3","gravatar_id":"","url":"https://api.github.com/users/garemoko","html_url":"https://github.com/garemoko","followers_url":"https://api.github.com/users/garemoko/followers","following_url":"https://api.github.com/users/garemoko/following{/other_user}","gists_url":"https://api.github.com/users/garemoko/gists{/gist_id}","starred_url":"https://api.github.com/users/garemoko/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/garemoko/subscriptions","organizations_url":"https://api.github.com/users/garemoko/orgs","repos_url":"https://api.github.com/users/garemoko/repos","events_url":"https://api.github.com/users/garemoko/events{/privacy}","received_events_url":"https://api.github.com/users/garemoko/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/garemoko/TinCanJS","description":"JavaScript library for Tin Can API","fork":true,"url":"https://api.github.com/repos/garemoko/TinCanJS","forks_url":"https://api.github.com/repos/garemoko/TinCanJS/forks","keys_url":"https://api.github.com/repos/garemoko/TinCanJS/keys{/key_id}","collaborators_url":"https://api.github.com/repos/garemoko/TinCanJS/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/garemoko/TinCanJS/teams","hooks_url":"https://api.github.com/repos/garemoko/TinCanJS/hooks","issue_events_url":"https://api.github.com/repos/garemoko/TinCanJS/issues/events{/number}","events_url":"https://api.github.com/repos/garemoko/TinCanJS/events","assignees_url":"https://api.github.com/repos/garemoko/TinCanJS/assignees{/user}","branches_url":"https://api.github.com/repos/garemoko/TinCanJS/branches{/branch}","tags_url":"https://api.github.com/repos/garemoko/TinCanJS/tags","blobs_url":"https://api.github.com/repos/garemoko/TinCanJS/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/garemoko/TinCanJS/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/garemoko/TinCanJS/git/refs{/sha}","trees_url":"https://api.github.com/repos/garemoko/TinCanJS/git/trees{/sha}","statuses_url":"https://api.github.com/repos/garemoko/TinCanJS/statuses/{sha}","languages_url":"https://api.github.com/repos/garemoko/TinCanJS/languages","stargazers_url":"https://api.github.com/repos/garemoko/TinCanJS/stargazers","contributors_url":"https://api.github.com/repos/garemoko/TinCanJS/contributors","subscribers_url":"https://api.github.com/repos/garemoko/TinCanJS/subscribers","subscription_url":"https://api.github.com/repos/garemoko/TinCanJS/subscription","commits_url":"https://api.github.com/repos/garemoko/TinCanJS/commits{/sha}","git_commits_url":"https://api.github.com/repos/garemoko/TinCanJS/git/commits{/sha}","comments_url":"https://api.github.com/repos/garemoko/TinCanJS/comments{/number}","issue_comment_url":"https://api.github.com/repos/garemoko/TinCanJS/issues/comments/{number}","contents_url":"https://api.github.com/repos/garemoko/TinCanJS/contents/{+path}","compare_url":"https://api.github.com/repos/garemoko/TinCanJS/compare/{base}...{head}","merges_url":"https://api.github.com/repos/garemoko/TinCanJS/merges","archive_url":"https://api.github.com/repos/garemoko/TinCanJS/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/garemoko/TinCanJS/downloads","issues_url":"https://api.github.com/repos/garemoko/TinCanJS/issues{/number}","pulls_url":"https://api.github.com/repos/garemoko/TinCanJS/pulls{/number}","milestones_url":"https://api.github.com/repos/garemoko/TinCanJS/milestones{/number}","notifications_url":"https://api.github.com/repos/garemoko/TinCanJS/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/garemoko/TinCanJS/labels{/name}","releases_url":"https://api.github.com/repos/garemoko/TinCanJS/releases{/id}","created_at":"2014-09-08T20:12:29Z","updated_at":"2014-12-08T15:36:53Z","pushed_at":"2014-12-30T16:51:57Z","git_url":"git://github.com/garemoko/TinCanJS.git","ssh_url":"git@github.com:garemoko/TinCanJS.git","clone_url":"https://github.com/garemoko/TinCanJS.git","svn_url":"https://github.com/garemoko/TinCanJS","homepage":"http://rusticisoftware.github.io/TinCanJS/","size":7430,"stargazers_count":0,"watchers_count":0,"language":"JavaScript","has_issues":false,"has_downloads":true,"has_wiki":true,"has_pages":true,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master"}},"base":{"label":"RusticiSoftware:master","ref":"master","sha":"6f51600a2d30f63d7ef61d528c99e6ff003c5934","user":{"login":"RusticiSoftware","id":440964,"avatar_url":"https://avatars.githubusercontent.com/u/440964?v=3","gravatar_id":"","url":"https://api.github.com/users/RusticiSoftware","html_url":"https://github.com/RusticiSoftware","followers_url":"https://api.github.com/users/RusticiSoftware/followers","following_url":"https://api.github.com/users/RusticiSoftware/following{/other_user}","gists_url":"https://api.github.com/users/RusticiSoftware/gists{/gist_id}","starred_url":"https://api.github.com/users/RusticiSoftware/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RusticiSoftware/subscriptions","organizations_url":"https://api.github.com/users/RusticiSoftware/orgs","repos_url":"https://api.github.com/users/RusticiSoftware/repos","events_url":"https://api.github.com/users/RusticiSoftware/events{/privacy}","received_events_url":"https://api.github.com/users/RusticiSoftware/received_events","type":"Organization","site_admin":false},"repo":{"id":5452699,"name":"TinCanJS","full_name":"RusticiSoftware/TinCanJS","owner":{"login":"RusticiSoftware","id":440964,"avatar_url":"https://avatars.githubusercontent.com/u/440964?v=3","gravatar_id":"","url":"https://api.github.com/users/RusticiSoftware","html_url":"https://github.com/RusticiSoftware","followers_url":"https://api.github.com/users/RusticiSoftware/followers","following_url":"https://api.github.com/users/RusticiSoftware/following{/other_user}","gists_url":"https://api.github.com/users/RusticiSoftware/gists{/gist_id}","starred_url":"https://api.github.com/users/RusticiSoftware/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RusticiSoftware/subscriptions","organizations_url":"https://api.github.com/users/RusticiSoftware/orgs","repos_url":"https://api.github.com/users/RusticiSoftware/repos","events_url":"https://api.github.com/users/RusticiSoftware/events{/privacy}","received_events_url":"https://api.github.com/users/RusticiSoftware/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/RusticiSoftware/TinCanJS","description":"JavaScript library for Tin Can API","fork":false,"url":"https://api.github.com/repos/RusticiSoftware/TinCanJS","forks_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/forks","keys_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/teams","hooks_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/hooks","issue_events_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/issues/events{/number}","events_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/events","assignees_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/assignees{/user}","branches_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/branches{/branch}","tags_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/tags","blobs_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/git/refs{/sha}","trees_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/statuses/{sha}","languages_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/languages","stargazers_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/stargazers","contributors_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/contributors","subscribers_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/subscribers","subscription_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/subscription","commits_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/commits{/sha}","git_commits_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/git/commits{/sha}","comments_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/comments{/number}","issue_comment_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/issues/comments/{number}","contents_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/contents/{+path}","compare_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/merges","archive_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/downloads","issues_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/issues{/number}","pulls_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/pulls{/number}","milestones_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/milestones{/number}","notifications_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/labels{/name}","releases_url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/releases{/id}","created_at":"2012-08-17T13:41:20Z","updated_at":"2015-01-01T14:47:41Z","pushed_at":"2015-01-01T15:00:10Z","git_url":"git://github.com/RusticiSoftware/TinCanJS.git","ssh_url":"git@github.com:RusticiSoftware/TinCanJS.git","clone_url":"https://github.com/RusticiSoftware/TinCanJS.git","svn_url":"https://github.com/RusticiSoftware/TinCanJS","homepage":"http://rusticisoftware.github.io/TinCanJS/","size":8368,"stargazers_count":78,"watchers_count":78,"language":"JavaScript","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":true,"forks_count":60,"mirror_url":null,"open_issues_count":22,"forks":60,"open_issues":22,"watchers":78,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/RusticiSoftware/TinCanJS/pulls/97"},"html":{"href":"https://github.com/RusticiSoftware/TinCanJS/pull/97"},"issue":{"href":"https://api.github.com/repos/RusticiSoftware/TinCanJS/issues/97"},"comments":{"href":"https://api.github.com/repos/RusticiSoftware/TinCanJS/issues/97/comments"},"review_comments":{"href":"https://api.github.com/repos/RusticiSoftware/TinCanJS/pulls/97/comments"},"review_comment":{"href":"https://api.github.com/repos/RusticiSoftware/TinCanJS/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/RusticiSoftware/TinCanJS/pulls/97/commits"},"statuses":{"href":"https://api.github.com/repos/RusticiSoftware/TinCanJS/statuses/c2073e24bc12351cec96ccfc7b97ef34ed32287c"}},"merged":true,"mergeable":null,"mergeable_state":"unknown","merged_by":{"login":"bscSCORM","id":732452,"avatar_url":"https://avatars.githubusercontent.com/u/732452?v=3","gravatar_id":"","url":"https://api.github.com/users/bscSCORM","html_url":"https://github.com/bscSCORM","followers_url":"https://api.github.com/users/bscSCORM/followers","following_url":"https://api.github.com/users/bscSCORM/following{/other_user}","gists_url":"https://api.github.com/users/bscSCORM/gists{/gist_id}","starred_url":"https://api.github.com/users/bscSCORM/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bscSCORM/subscriptions","organizations_url":"https://api.github.com/users/bscSCORM/orgs","repos_url":"https://api.github.com/users/bscSCORM/repos","events_url":"https://api.github.com/users/bscSCORM/events{/privacy}","received_events_url":"https://api.github.com/users/bscSCORM/received_events","type":"User","site_admin":false},"comments":4,"review_comments":8,"commits":5,"additions":379,"deletions":6,"changed_files":3}},"public":true,"created_at":"2015-01-01T15:00:10Z","org":{"id":440964,"login":"RusticiSoftware","gravatar_id":"","url":"https://api.github.com/orgs/RusticiSoftware","avatar_url":"https://avatars.githubusercontent.com/u/440964?"}}
,{"id":"2489651134","type":"PushEvent","actor":{"id":227042,"login":"missionsix","gravatar_id":"","url":"https://api.github.com/users/missionsix","avatar_url":"https://avatars.githubusercontent.com/u/227042?"},"repo":{"id":19073780,"name":"missionsix/Transmissionbt","url":"https://api.github.com/repos/missionsix/Transmissionbt"},"payload":{"push_id":536864012,"size":3,"distinct_size":3,"ref":"refs/heads/master","head":"327e6e0f499419019bfd9583a116dc8ffba05938","before":"6bed2872a1750b4d8862cfe0780d176c987c75c4","commits":[{"sha":"c7f1fe9de1da8077fe350bc9b19330d1d14eb6a9","author":{"email":"8ad902a5fac63217bd4ef0dd6cd757402f47cc75@1bcf1a7e-6170-4b50-b784-84ec52b2dec6","name":"mikedld"},"message":"#4400, #5462: Add possibility to test one crypto backend against another (reference) backend\n\n\ngit-svn-id: file:///data/workdir/Transmission-svn/trunk@14419 1bcf1a7e-6170-4b50-b784-84ec52b2dec6","distinct":true,"url":"https://api.github.com/repos/missionsix/Transmissionbt/commits/c7f1fe9de1da8077fe350bc9b19330d1d14eb6a9"},{"sha":"797366176e4bbc4977e19b235370cce0701c379d","author":{"email":"8ad902a5fac63217bd4ef0dd6cd757402f47cc75@1bcf1a7e-6170-4b50-b784-84ec52b2dec6","name":"mikedld"},"message":"#4400, #5462: Fix autotools configuration\n\n\ngit-svn-id: file:///data/workdir/Transmission-svn/trunk@14420 1bcf1a7e-6170-4b50-b784-84ec52b2dec6","distinct":true,"url":"https://api.github.com/repos/missionsix/Transmissionbt/commits/797366176e4bbc4977e19b235370cce0701c379d"},{"sha":"327e6e0f499419019bfd9583a116dc8ffba05938","author":{"email":"8ad902a5fac63217bd4ef0dd6cd757402f47cc75@1bcf1a7e-6170-4b50-b784-84ec52b2dec6","name":"mikedld"},"message":"#4400, #5462: Fix \"make check\" for po files\n\n\ngit-svn-id: file:///data/workdir/Transmission-svn/trunk@14421 1bcf1a7e-6170-4b50-b784-84ec52b2dec6","distinct":true,"url":"https://api.github.com/repos/missionsix/Transmissionbt/commits/327e6e0f499419019bfd9583a116dc8ffba05938"}]},"public":true,"created_at":"2015-01-01T15:00:10Z"}
,{"id":"2489651135","type":"PushEvent","actor":{"id":1276160,"login":"designingsean","gravatar_id":"","url":"https://api.github.com/users/designingsean","avatar_url":"https://avatars.githubusercontent.com/u/1276160?"},"repo":{"id":28671894,"name":"designingsean/tce-wordpress-theme","url":"https://api.github.com/repos/designingsean/tce-wordpress-theme"},"payload":{"push_id":536864013,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"85036f9252390fbadaf4a5232f55c320e4cd718e","before":"71833e4d47472462cdd1804a47f2fd44b17727b1","commits":[{"sha":"85036f9252390fbadaf4a5232f55c320e4cd718e","author":{"email":"d7e19930cc1f42c2d0781f4d9e6f1fe5891bf9cf@designingsean.com","name":"Sean Ryan"},"message":"Add in very rough mobile styles","distinct":true,"url":"https://api.github.com/repos/designingsean/tce-wordpress-theme/commits/85036f9252390fbadaf4a5232f55c320e4cd718e"}]},"public":true,"created_at":"2015-01-01T15:00:10Z"}
,{"id":"2489651137","type":"PushEvent","actor":{"id":429529,"login":"cato-","gravatar_id":"","url":"https://api.github.com/users/cato-","avatar_url":"https://avatars.githubusercontent.com/u/429529?"},"repo":{"id":7588969,"name":"xenim/livestatus-publicpage","url":"https://api.github.com/repos/xenim/livestatus-publicpage"},"payload":{"push_id":536864015,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"04baa6f3a60d5ec9939e8a427d06148a6648d781","before":"024962500dccf1395702d2c737349620239c3f60","commits":[{"sha":"04baa6f3a60d5ec9939e8a427d06148a6648d781","author":{"email":"12e9293ec6b30c7fa8a0926af42807e929c1684f@niob.xnis.de","name":"Robert Weidlich"},"message":"update","distinct":true,"url":"https://api.github.com/repos/xenim/livestatus-publicpage/commits/04baa6f3a60d5ec9939e8a427d06148a6648d781"}]},"public":true,"created_at":"2015-01-01T15:00:10Z","org":{"id":1789841,"login":"xenim","gravatar_id":"","url":"https://api.github.com/orgs/xenim","avatar_url":"https://avatars.githubusercontent.com/u/1789841?"}}
,{"id":"2489651138","type":"PushEvent","actor":{"id":3157424,"login":"fffy2366","gravatar_id":"","url":"https://api.github.com/users/fffy2366","avatar_url":"https://avatars.githubusercontent.com/u/3157424?"},"repo":{"id":28271942,"name":"wechat-distribution/distribution","url":"https://api.github.com/repos/wechat-distribution/distribution"},"payload":{"push_id":536864014,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"e253376a66a6e431ea89723c9b8bb9186b70f518","before":"003c9c9fe8e6a2c95d87b75895ccdec4ef9f9635","commits":[{"sha":"e253376a66a6e431ea89723c9b8bb9186b70f518","author":{"email":"3f309f8c9fb4a69938494f88f629d59c9c4a532c@gmail.com","name":"Frank"},"message":"change credit","distinct":true,"url":"https://api.github.com/repos/wechat-distribution/distribution/commits/e253376a66a6e431ea89723c9b8bb9186b70f518"}]},"public":true,"created_at":"2015-01-01T15:00:10Z","org":{"id":10253928,"login":"wechat-distribution","gravatar_id":"","url":"https://api.github.com/orgs/wechat-distribution","avatar_url":"https://avatars.githubusercontent.com/u/10253928?"}}
,{"id":"2489651140","type":"PushEvent","actor":{"id":1608685,"login":"nmap-bot","gravatar_id":"","url":"https://api.github.com/users/nmap-bot","avatar_url":"https://avatars.githubusercontent.com/u/1608685?"},"repo":{"id":3671479,"name":"nmap/nmap","url":"https://api.github.com/repos/nmap/nmap"},"payload":{"push_id":536864016,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"d2622c0396f5fbac6edb42df6b49f23ded21d8e2","before":"fc99bed7069b4996631ebda2f2dcea1c5814b369","commits":[{"sha":"1371a3303e2f2a15867f94beed496a6d5ac121be","author":{"email":"d1a888239fe2584da78334b3974c3b58a26c0864@e0a8ed71-7df4-0310-8962-fdc924857419","name":"tomsellers"},"message":"Rework of PostgreSQL version detection -\n\nAdded detection for PostgreSQL 9.4 via line number match\nAdded windows platform detection\nReworked language specific sections for regex consistency and priority\nGenerated German softmatch from a more specific probe\nBroadened French softmatch\nCreated language neutral universal softmatches for windows and non-windows platforms","distinct":true,"url":"https://api.github.com/repos/nmap/nmap/commits/1371a3303e2f2a15867f94beed496a6d5ac121be"},{"sha":"d2622c0396f5fbac6edb42df6b49f23ded21d8e2","author":{"email":"d1a888239fe2584da78334b3974c3b58a26c0864@e0a8ed71-7df4-0310-8962-fdc924857419","name":"tomsellers"},"message":"Fix reference in rmi-vuln-classloader.nse to point to Metasploit\nGithub repo as Metasploit Redmine is deprecated and requires\nauth.","distinct":true,"url":"https://api.github.com/repos/nmap/nmap/commits/d2622c0396f5fbac6edb42df6b49f23ded21d8e2"}]},"public":true,"created_at":"2015-01-01T15:00:10Z","org":{"id":63385,"login":"nmap","gravatar_id":"","url":"https://api.github.com/orgs/nmap","avatar_url":"https://avatars.githubusercontent.com/u/63385?"}}
,{"id":"2489651141","type":"PushEvent","actor":{"id":4447136,"login":"su-github-machine-user","gravatar_id":"","url":"https://api.github.com/users/su-github-machine-user","avatar_url":"https://avatars.githubusercontent.com/u/4447136?"},"repo":{"id":10314483,"name":"su-github-machine-user/github-nagios-check","url":"https://api.github.com/repos/su-github-machine-user/github-nagios-check"},"payload":{"push_id":536864017,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"c3ae48b58233d6b4e40829076b731cf7b8eecc28","before":"f7e5efb3006a41246e9cad0a8f20d58a04215336","commits":[{"sha":"c3ae48b58233d6b4e40829076b731cf7b8eecc28","author":{"email":"875a8f2f42c570f5f4ea7bfd154f582bcf95673a@su.se","name":"su-githubmirror"},"message":"New timestamp: 1420124402","distinct":true,"url":"https://api.github.com/repos/su-github-machine-user/github-nagios-check/commits/c3ae48b58233d6b4e40829076b731cf7b8eecc28"}]},"public":true,"created_at":"2015-01-01T15:00:10Z"}
,{"id":"2489651143","type":"PushEvent","actor":{"id":732452,"login":"bscSCORM","gravatar_id":"","url":"https://api.github.com/users/bscSCORM","avatar_url":"https://avatars.githubusercontent.com/u/732452?"},"repo":{"id":5452699,"name":"RusticiSoftware/TinCanJS","url":"https://api.github.com/repos/RusticiSoftware/TinCanJS"},"payload":{"push_id":536864019,"size":6,"distinct_size":6,"ref":"refs/heads/master","head":"0b7228d8cdcf4ea3e954b6f34e7e51ce815cacf2","before":"a40a23d5ba0d4bf0c5b96e552f2f873123195fb0","commits":[{"sha":"7ce74102de0eab323c195c23d11d1ed8bd5b787d","author":{"email":"f0b5ad119fc7d6d7228544a49e69f64f24eacb81@hotmail.com","name":"Andrew Downes"},"message":"Allow forced no registration and POST method for setState","distinct":true,"url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/commits/7ce74102de0eab323c195c23d11d1ed8bd5b787d"},{"sha":"f59467e41917191c754d497c7783bce993260c7b","author":{"email":"f0b5ad119fc7d6d7228544a49e69f64f24eacb81@hotmail.com","name":"Andrew Downes"},"message":"Style fixes","distinct":true,"url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/commits/f59467e41917191c754d497c7783bce993260c7b"},{"sha":"a13fb6be3ae24f2d1e6714a8a623af63f81776b5","author":{"email":"f0b5ad119fc7d6d7228544a49e69f64f24eacb81@hotmail.com","name":"Andrew Downes"},"message":"forced no registration and POST for all document API methods (with tests)","distinct":true,"url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/commits/a13fb6be3ae24f2d1e6714a8a623af63f81776b5"},{"sha":"561244ffd8e1ec2533451b26b60429e8e1f1db67","author":{"email":"f0b5ad119fc7d6d7228544a49e69f64f24eacb81@hotmail.com","name":"Andrew Downes"},"message":"allow explicitly null registration for getState","distinct":true,"url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/commits/561244ffd8e1ec2533451b26b60429e8e1f1db67"},{"sha":"c2073e24bc12351cec96ccfc7b97ef34ed32287c","author":{"email":"f0b5ad119fc7d6d7228544a49e69f64f24eacb81@hotmail.com","name":"Andrew Downes"},"message":"Fixes to agent and activity profile tests","distinct":true,"url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/commits/c2073e24bc12351cec96ccfc7b97ef34ed32287c"},{"sha":"0b7228d8cdcf4ea3e954b6f34e7e51ce815cacf2","author":{"email":"3a19cd5185143587c3e7d5e91f5db86ca3a27fc7@scorm.com","name":"bscSCORM"},"message":"Merge pull request #97 from garemoko/setState_squashed\n\nAllow forced no registration and POST method for setState","distinct":true,"url":"https://api.github.com/repos/RusticiSoftware/TinCanJS/commits/0b7228d8cdcf4ea3e954b6f34e7e51ce815cacf2"}]},"public":true,"created_at":"2015-01-01T15:00:10Z","org":{"id":440964,"login":"RusticiSoftware","gravatar_id":"","url":"https://api.github.com/orgs/RusticiSoftware","avatar_url":"https://avatars.githubusercontent.com/u/440964?"}}
,{"id":"2489651146","type":"PushEvent","actor":{"id":1450716,"login":"luigino","gravatar_id":"","url":"https://api.github.com/users/luigino","avatar_url":"https://avatars.githubusercontent.com/u/1450716?"},"repo":{"id":28688404,"name":"luigino/Baka-MPlayer","url":"https://api.github.com/repos/luigino/Baka-MPlayer"},"payload":{"push_id":536864021,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"a489b190099429657d97209261eafb8713e11f8b","before":"abe4f865d05d63b194227b41210fa53fbe6f56f9","commits":[{"sha":"a489b190099429657d97209261eafb8713e11f8b","author":{"email":"2efa471c453097304a26f7a4073c0b0cb8086df1@gmx.com","name":"Luigi Baldoni"},"message":"Added Italian translation","distinct":true,"url":"https://api.github.com/repos/luigino/Baka-MPlayer/commits/a489b190099429657d97209261eafb8713e11f8b"}]},"public":true,"created_at":"2015-01-01T15:00:11Z"}
,{"id":"2489651154","type":"GollumEvent","actor":{"id":877290,"login":"wyldckat","gravatar_id":"","url":"https://api.github.com/users/wyldckat","avatar_url":"https://avatars.githubusercontent.com/u/877290?"},"repo":{"id":15490592,"name":"wyldckat/wyldckat.github.io","url":"https://api.github.com/repos/wyldckat/wyldckat.github.io"},"payload":{"pages":[{"page_name":"Home","title":"Home","summary":null,"action":"edited","sha":"604f669003fe6d1fd7f826437a02e42e5481f802","html_url":"https://github.com/wyldckat/wyldckat.github.io/wiki/Home"}]},"public":true,"created_at":"2015-01-01T15:00:11Z"}
,{"id":"2489651156","type":"PushEvent","actor":{"id":2318343,"login":"treckstar","gravatar_id":"","url":"https://api.github.com/users/treckstar","avatar_url":"https://avatars.githubusercontent.com/u/2318343?"},"repo":{"id":17101123,"name":"treckstar/yolo-octo-hipster","url":"https://api.github.com/repos/treckstar/yolo-octo-hipster"},"payload":{"push_id":536864026,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"2b2c33057d10424c9989d70eac74d0e63a9d7e89","before":"2c75a5b19bce244487398b0db4132ebaf27d0e9d","commits":[{"sha":"2b2c33057d10424c9989d70eac74d0e63a9d7e89","author":{"email":"28cf8d5dd63a27bb1a047ac2fe7ded863d3bc56c@gmail.com","name":"treckstar"},"message":"Good music is good music, and that should be enough for anybody.","distinct":true,"url":"https://api.github.com/repos/treckstar/yolo-octo-hipster/commits/2b2c33057d10424c9989d70eac74d0e63a9d7e89"}]},"public":true,"created_at":"2015-01-01T15:00:11Z"}
,{"id":"2489651164","type":"PushEvent","actor":{"id":8675834,"login":"tamil1","gravatar_id":"","url":"https://api.github.com/users/tamil1","avatar_url":"https://avatars.githubusercontent.com/u/8675834?"},"repo":{"id":23728095,"name":"tamil1/tamil1.github.io","url":"https://api.github.com/repos/tamil1/tamil1.github.io"},"payload":{"push_id":536864031,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"15f79969406eec31c20a42e27bf2a54aee7f17b7","before":"98e36510c5c44146d5943be67500b33cf2f7c20f","commits":[{"sha":"15f79969406eec31c20a42e27bf2a54aee7f17b7","author":{"email":"3425cbc239dd0de4c48f523e0e9eff11aa587235@gmail.com","name":"tamil1"},"message":"normalrun","distinct":true,"url":"https://api.github.com/repos/tamil1/tamil1.github.io/commits/15f79969406eec31c20a42e27bf2a54aee7f17b7"}]},"public":true,"created_at":"2015-01-01T15:00:12Z"}
,{"id":"2489651165","type":"PushEvent","actor":{"id":10066144,"login":"nilegsalcin","gravatar_id":"","url":"https://api.github.com/users/nilegsalcin","avatar_url":"https://avatars.githubusercontent.com/u/10066144?"},"repo":{"id":28340536,"name":"nilegsalcin/puppet-bootstrap","url":"https://api.github.com/repos/nilegsalcin/puppet-bootstrap"},"payload":{"push_id":536864032,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"d861c239ff6ec2e31a990c74dc3a9da3424996c1","before":"0497f04c7e1977282fde3cf469d7c52c1b0cdbf2","commits":[{"sha":"d861c239ff6ec2e31a990c74dc3a9da3424996c1","author":{"email":"64b2b6d12bfe4baae7dad3d018f8cbf6b0e7a044@niclasgelin.se","name":"niclasgelin"},"message":"Example commit","distinct":true,"url":"https://api.github.com/repos/nilegsalcin/puppet-bootstrap/commits/d861c239ff6ec2e31a990c74dc3a9da3424996c1"}]},"public":true,"created_at":"2015-01-01T15:00:12Z"}
,{"id":"2489651167","type":"CreateEvent","actor":{"id":2884455,"login":"chrisduan","gravatar_id":"","url":"https://api.github.com/users/chrisduan","avatar_url":"https://avatars.githubusercontent.com/u/2884455?"},"repo":{"id":28683221,"name":"chrisduan/mychat","url":"https://api.github.com/repos/chrisduan/mychat"},"payload":{"ref":"task","ref_type":"branch","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:00:12Z"}
,{"id":"2489651168","type":"PushEvent","actor":{"id":4277,"login":"yaroslav","gravatar_id":"","url":"https://api.github.com/users/yaroslav","avatar_url":"https://avatars.githubusercontent.com/u/4277?"},"repo":{"id":26508664,"name":"evilmartians/postcss","url":"https://api.github.com/repos/evilmartians/postcss"},"payload":{"push_id":536864034,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"6a3c20cbd10b7766713a56c294cb6d77dd35ace9","before":"311c811fbfab757e112290e6e80c5ca8c53d85f7","commits":[{"sha":"42a1df1139aae53ca0dffd5be208a90543023870","author":{"email":"64b2b6d12bfe4baae7dad3d018f8cbf6b0e7a044@rebertia.com","name":"Chris Rebert"},"message":"typo/spelling fix in README","distinct":true,"url":"https://api.github.com/repos/evilmartians/postcss/commits/42a1df1139aae53ca0dffd5be208a90543023870"},{"sha":"6a3c20cbd10b7766713a56c294cb6d77dd35ace9","author":{"email":"fd2b0a636ed0c80c1646cd2c2e72f7a758b42b5b@sitnik.ru","name":"Andrey Sitnik"},"message":"Merge pull request #160 from cvrebert/patch-1\n\ntypo/spelling fix in README","distinct":true,"url":"https://api.github.com/repos/evilmartians/postcss/commits/6a3c20cbd10b7766713a56c294cb6d77dd35ace9"}]},"public":true,"created_at":"2015-01-01T15:00:12Z","org":{"id":46581,"login":"evilmartians","gravatar_id":"","url":"https://api.github.com/orgs/evilmartians","avatar_url":"https://avatars.githubusercontent.com/u/46581?"}}
,{"id":"2489651169","type":"PushEvent","actor":{"id":8770348,"login":"HouseMonitor","gravatar_id":"","url":"https://api.github.com/users/HouseMonitor","avatar_url":"https://avatars.githubusercontent.com/u/8770348?"},"repo":{"id":24030380,"name":"HouseMonitor/Logs2014-2015","url":"https://api.github.com/repos/HouseMonitor/Logs2014-2015"},"payload":{"push_id":536864036,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"3e84515dc75cd395fc74549b2f2647885563f3cf","before":"0b8540a22ee6d99b0d068874597c4db2aed15776","commits":[{"sha":"3e84515dc75cd395fc74549b2f2647885563f3cf","author":{"email":"17e72c8f1b0781cefad8c299a70b47a752ed01a6@gmail.com","name":"Matej Drolc"},"message":"automated commit","distinct":true,"url":"https://api.github.com/repos/HouseMonitor/Logs2014-2015/commits/3e84515dc75cd395fc74549b2f2647885563f3cf"}]},"public":true,"created_at":"2015-01-01T15:00:12Z"}
,{"id":"2489651172","type":"PushEvent","actor":{"id":5059195,"login":"Blimeo","gravatar_id":"","url":"https://api.github.com/users/Blimeo","avatar_url":"https://avatars.githubusercontent.com/u/5059195?"},"repo":{"id":28688096,"name":"Blimeo/blimeo.github.io","url":"https://api.github.com/repos/Blimeo/blimeo.github.io"},"payload":{"push_id":536864038,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"c2d7a0295ac9c1b5f66c4905b15554837dd6af36","before":"ac36b03525bdde4e20484762e28d938ad069f950","commits":[{"sha":"c2d7a0295ac9c1b5f66c4905b15554837dd6af36","author":{"email":"05c0269870804bada1f091d378fdd69482fe0000@yahoo.com","name":"Matthew Ye"},"message":"dddddddddd\n\ndddddddddddd","distinct":true,"url":"https://api.github.com/repos/Blimeo/blimeo.github.io/commits/c2d7a0295ac9c1b5f66c4905b15554837dd6af36"}]},"public":true,"created_at":"2015-01-01T15:00:12Z"}
,{"id":"2489651177","type":"PushEvent","actor":{"id":4102215,"login":"d3stats","gravatar_id":"","url":"https://api.github.com/users/d3stats","avatar_url":"https://avatars.githubusercontent.com/u/4102215?"},"repo":{"id":9317463,"name":"d3stats/d3.fuzz.me.uk","url":"https://api.github.com/repos/d3stats/d3.fuzz.me.uk"},"payload":{"push_id":536864039,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"8d2eeac4682416227ab24cdb1b96b7854ef0bf95","before":"fb12c4a82f191cf34318250b164e1099cf093c33","commits":[{"sha":"8d2eeac4682416227ab24cdb1b96b7854ef0bf95","author":{"email":"4f26aeafdb2367620a393c973eddbe8f8b846ebd@fuzz.me.uk","name":"d3stats"},"message":"scheduled update","distinct":true,"url":"https://api.github.com/repos/d3stats/d3.fuzz.me.uk/commits/8d2eeac4682416227ab24cdb1b96b7854ef0bf95"}]},"public":true,"created_at":"2015-01-01T15:00:13Z"}
,{"id":"2489651179","type":"PullRequestEvent","actor":{"id":7580708,"login":"OQO","gravatar_id":"","url":"https://api.github.com/users/OQO","avatar_url":"https://avatars.githubusercontent.com/u/7580708?"},"repo":{"id":19777872,"name":"OQO/websocket-sharp","url":"https://api.github.com/repos/OQO/websocket-sharp"},"payload":{"action":"opened","number":1,"pull_request":{"url":"https://api.github.com/repos/OQO/websocket-sharp/pulls/1","id":26743767,"html_url":"https://github.com/OQO/websocket-sharp/pull/1","diff_url":"https://github.com/OQO/websocket-sharp/pull/1.diff","patch_url":"https://github.com/OQO/websocket-sharp/pull/1.patch","issue_url":"https://api.github.com/repos/OQO/websocket-sharp/issues/1","number":1,"state":"open","locked":false,"title":"Update from master","user":{"login":"OQO","id":7580708,"avatar_url":"https://avatars.githubusercontent.com/u/7580708?v=3","gravatar_id":"","url":"https://api.github.com/users/OQO","html_url":"https://github.com/OQO","followers_url":"https://api.github.com/users/OQO/followers","following_url":"https://api.github.com/users/OQO/following{/other_user}","gists_url":"https://api.github.com/users/OQO/gists{/gist_id}","starred_url":"https://api.github.com/users/OQO/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/OQO/subscriptions","organizations_url":"https://api.github.com/users/OQO/orgs","repos_url":"https://api.github.com/users/OQO/repos","events_url":"https://api.github.com/users/OQO/events{/privacy}","received_events_url":"https://api.github.com/users/OQO/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:00:12Z","updated_at":"2015-01-01T15:00:12Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/OQO/websocket-sharp/pulls/1/commits","review_comments_url":"https://api.github.com/repos/OQO/websocket-sharp/pulls/1/comments","review_comment_url":"https://api.github.com/repos/OQO/websocket-sharp/pulls/comments/{number}","comments_url":"https://api.github.com/repos/OQO/websocket-sharp/issues/1/comments","statuses_url":"https://api.github.com/repos/OQO/websocket-sharp/statuses/d25abde62826651db331b8995a02fa5b6d1a1847","head":{"label":"sta:master","ref":"master","sha":"d25abde62826651db331b8995a02fa5b6d1a1847","user":{"login":"sta","id":443481,"avatar_url":"https://avatars.githubusercontent.com/u/443481?v=3","gravatar_id":"","url":"https://api.github.com/users/sta","html_url":"https://github.com/sta","followers_url":"https://api.github.com/users/sta/followers","following_url":"https://api.github.com/users/sta/following{/other_user}","gists_url":"https://api.github.com/users/sta/gists{/gist_id}","starred_url":"https://api.github.com/users/sta/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/sta/subscriptions","organizations_url":"https://api.github.com/users/sta/orgs","repos_url":"https://api.github.com/users/sta/repos","events_url":"https://api.github.com/users/sta/events{/privacy}","received_events_url":"https://api.github.com/users/sta/received_events","type":"User","site_admin":false},"repo":{"id":997491,"name":"websocket-sharp","full_name":"sta/websocket-sharp","owner":{"login":"sta","id":443481,"avatar_url":"https://avatars.githubusercontent.com/u/443481?v=3","gravatar_id":"","url":"https://api.github.com/users/sta","html_url":"https://github.com/sta","followers_url":"https://api.github.com/users/sta/followers","following_url":"https://api.github.com/users/sta/following{/other_user}","gists_url":"https://api.github.com/users/sta/gists{/gist_id}","starred_url":"https://api.github.com/users/sta/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/sta/subscriptions","organizations_url":"https://api.github.com/users/sta/orgs","repos_url":"https://api.github.com/users/sta/repos","events_url":"https://api.github.com/users/sta/events{/privacy}","received_events_url":"https://api.github.com/users/sta/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/sta/websocket-sharp","description":"A C# implementation of the WebSocket protocol client and server","fork":false,"url":"https://api.github.com/repos/sta/websocket-sharp","forks_url":"https://api.github.com/repos/sta/websocket-sharp/forks","keys_url":"https://api.github.com/repos/sta/websocket-sharp/keys{/key_id}","collaborators_url":"https://api.github.com/repos/sta/websocket-sharp/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/sta/websocket-sharp/teams","hooks_url":"https://api.github.com/repos/sta/websocket-sharp/hooks","issue_events_url":"https://api.github.com/repos/sta/websocket-sharp/issues/events{/number}","events_url":"https://api.github.com/repos/sta/websocket-sharp/events","assignees_url":"https://api.github.com/repos/sta/websocket-sharp/assignees{/user}","branches_url":"https://api.github.com/repos/sta/websocket-sharp/branches{/branch}","tags_url":"https://api.github.com/repos/sta/websocket-sharp/tags","blobs_url":"https://api.github.com/repos/sta/websocket-sharp/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/sta/websocket-sharp/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/sta/websocket-sharp/git/refs{/sha}","trees_url":"https://api.github.com/repos/sta/websocket-sharp/git/trees{/sha}","statuses_url":"https://api.github.com/repos/sta/websocket-sharp/statuses/{sha}","languages_url":"https://api.github.com/repos/sta/websocket-sharp/languages","stargazers_url":"https://api.github.com/repos/sta/websocket-sharp/stargazers","contributors_url":"https://api.github.com/repos/sta/websocket-sharp/contributors","subscribers_url":"https://api.github.com/repos/sta/websocket-sharp/subscribers","subscription_url":"https://api.github.com/repos/sta/websocket-sharp/subscription","commits_url":"https://api.github.com/repos/sta/websocket-sharp/commits{/sha}","git_commits_url":"https://api.github.com/repos/sta/websocket-sharp/git/commits{/sha}","comments_url":"https://api.github.com/repos/sta/websocket-sharp/comments{/number}","issue_comment_url":"https://api.github.com/repos/sta/websocket-sharp/issues/comments/{number}","contents_url":"https://api.github.com/repos/sta/websocket-sharp/contents/{+path}","compare_url":"https://api.github.com/repos/sta/websocket-sharp/compare/{base}...{head}","merges_url":"https://api.github.com/repos/sta/websocket-sharp/merges","archive_url":"https://api.github.com/repos/sta/websocket-sharp/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/sta/websocket-sharp/downloads","issues_url":"https://api.github.com/repos/sta/websocket-sharp/issues{/number}","pulls_url":"https://api.github.com/repos/sta/websocket-sharp/pulls{/number}","milestones_url":"https://api.github.com/repos/sta/websocket-sharp/milestones{/number}","notifications_url":"https://api.github.com/repos/sta/websocket-sharp/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/sta/websocket-sharp/labels{/name}","releases_url":"https://api.github.com/repos/sta/websocket-sharp/releases{/id}","created_at":"2010-10-18T12:51:34Z","updated_at":"2015-01-01T14:57:39Z","pushed_at":"2014-12-31T02:45:51Z","git_url":"git://github.com/sta/websocket-sharp.git","ssh_url":"git@github.com:sta/websocket-sharp.git","clone_url":"https://github.com/sta/websocket-sharp.git","svn_url":"https://github.com/sta/websocket-sharp","homepage":"http://sta.github.io/websocket-sharp","size":17131,"stargazers_count":284,"watchers_count":284,"language":"C#","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":true,"forks_count":110,"mirror_url":null,"open_issues_count":63,"forks":110,"open_issues":63,"watchers":284,"default_branch":"master"}},"base":{"label":"OQO:master","ref":"master","sha":"87d48ed9ad4c88d5c7f03d8fc9546a15b42fc9c4","user":{"login":"OQO","id":7580708,"avatar_url":"https://avatars.githubusercontent.com/u/7580708?v=3","gravatar_id":"","url":"https://api.github.com/users/OQO","html_url":"https://github.com/OQO","followers_url":"https://api.github.com/users/OQO/followers","following_url":"https://api.github.com/users/OQO/following{/other_user}","gists_url":"https://api.github.com/users/OQO/gists{/gist_id}","starred_url":"https://api.github.com/users/OQO/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/OQO/subscriptions","organizations_url":"https://api.github.com/users/OQO/orgs","repos_url":"https://api.github.com/users/OQO/repos","events_url":"https://api.github.com/users/OQO/events{/privacy}","received_events_url":"https://api.github.com/users/OQO/received_events","type":"User","site_admin":false},"repo":{"id":19777872,"name":"websocket-sharp","full_name":"OQO/websocket-sharp","owner":{"login":"OQO","id":7580708,"avatar_url":"https://avatars.githubusercontent.com/u/7580708?v=3","gravatar_id":"","url":"https://api.github.com/users/OQO","html_url":"https://github.com/OQO","followers_url":"https://api.github.com/users/OQO/followers","following_url":"https://api.github.com/users/OQO/following{/other_user}","gists_url":"https://api.github.com/users/OQO/gists{/gist_id}","starred_url":"https://api.github.com/users/OQO/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/OQO/subscriptions","organizations_url":"https://api.github.com/users/OQO/orgs","repos_url":"https://api.github.com/users/OQO/repos","events_url":"https://api.github.com/users/OQO/events{/privacy}","received_events_url":"https://api.github.com/users/OQO/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/OQO/websocket-sharp","description":"A C# implementation of the WebSocket protocol client and server","fork":true,"url":"https://api.github.com/repos/OQO/websocket-sharp","forks_url":"https://api.github.com/repos/OQO/websocket-sharp/forks","keys_url":"https://api.github.com/repos/OQO/websocket-sharp/keys{/key_id}","collaborators_url":"https://api.github.com/repos/OQO/websocket-sharp/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/OQO/websocket-sharp/teams","hooks_url":"https://api.github.com/repos/OQO/websocket-sharp/hooks","issue_events_url":"https://api.github.com/repos/OQO/websocket-sharp/issues/events{/number}","events_url":"https://api.github.com/repos/OQO/websocket-sharp/events","assignees_url":"https://api.github.com/repos/OQO/websocket-sharp/assignees{/user}","branches_url":"https://api.github.com/repos/OQO/websocket-sharp/branches{/branch}","tags_url":"https://api.github.com/repos/OQO/websocket-sharp/tags","blobs_url":"https://api.github.com/repos/OQO/websocket-sharp/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/OQO/websocket-sharp/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/OQO/websocket-sharp/git/refs{/sha}","trees_url":"https://api.github.com/repos/OQO/websocket-sharp/git/trees{/sha}","statuses_url":"https://api.github.com/repos/OQO/websocket-sharp/statuses/{sha}","languages_url":"https://api.github.com/repos/OQO/websocket-sharp/languages","stargazers_url":"https://api.github.com/repos/OQO/websocket-sharp/stargazers","contributors_url":"https://api.github.com/repos/OQO/websocket-sharp/contributors","subscribers_url":"https://api.github.com/repos/OQO/websocket-sharp/subscribers","subscription_url":"https://api.github.com/repos/OQO/websocket-sharp/subscription","commits_url":"https://api.github.com/repos/OQO/websocket-sharp/commits{/sha}","git_commits_url":"https://api.github.com/repos/OQO/websocket-sharp/git/commits{/sha}","comments_url":"https://api.github.com/repos/OQO/websocket-sharp/comments{/number}","issue_comment_url":"https://api.github.com/repos/OQO/websocket-sharp/issues/comments/{number}","contents_url":"https://api.github.com/repos/OQO/websocket-sharp/contents/{+path}","compare_url":"https://api.github.com/repos/OQO/websocket-sharp/compare/{base}...{head}","merges_url":"https://api.github.com/repos/OQO/websocket-sharp/merges","archive_url":"https://api.github.com/repos/OQO/websocket-sharp/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/OQO/websocket-sharp/downloads","issues_url":"https://api.github.com/repos/OQO/websocket-sharp/issues{/number}","pulls_url":"https://api.github.com/repos/OQO/websocket-sharp/pulls{/number}","milestones_url":"https://api.github.com/repos/OQO/websocket-sharp/milestones{/number}","notifications_url":"https://api.github.com/repos/OQO/websocket-sharp/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/OQO/websocket-sharp/labels{/name}","releases_url":"https://api.github.com/repos/OQO/websocket-sharp/releases{/id}","created_at":"2014-05-14T12:06:30Z","updated_at":"2015-01-01T14:57:34Z","pushed_at":"2014-05-12T10:57:20Z","git_url":"git://github.com/OQO/websocket-sharp.git","ssh_url":"git@github.com:OQO/websocket-sharp.git","clone_url":"https://github.com/OQO/websocket-sharp.git","svn_url":"https://github.com/OQO/websocket-sharp","homepage":"http://sta.github.io/websocket-sharp","size":12939,"stargazers_count":0,"watchers_count":0,"language":"C#","has_issues":false,"has_downloads":true,"has_wiki":true,"has_pages":true,"forks_count":0,"mirror_url":null,"open_issues_count":1,"forks":0,"open_issues":1,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/OQO/websocket-sharp/pulls/1"},"html":{"href":"https://github.com/OQO/websocket-sharp/pull/1"},"issue":{"href":"https://api.github.com/repos/OQO/websocket-sharp/issues/1"},"comments":{"href":"https://api.github.com/repos/OQO/websocket-sharp/issues/1/comments"},"review_comments":{"href":"https://api.github.com/repos/OQO/websocket-sharp/pulls/1/comments"},"review_comment":{"href":"https://api.github.com/repos/OQO/websocket-sharp/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/OQO/websocket-sharp/pulls/1/commits"},"statuses":{"href":"https://api.github.com/repos/OQO/websocket-sharp/statuses/d25abde62826651db331b8995a02fa5b6d1a1847"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":269,"additions":8814,"deletions":7216,"changed_files":88}},"public":true,"created_at":"2015-01-01T15:00:13Z"}
,{"id":"2489651182","type":"PushEvent","actor":{"id":8147971,"login":"machchk","gravatar_id":"","url":"https://api.github.com/users/machchk","avatar_url":"https://avatars.githubusercontent.com/u/8147971?"},"repo":{"id":21783823,"name":"machchk/report","url":"https://api.github.com/repos/machchk/report"},"payload":{"push_id":536864041,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"fb87b961677cfaa8f078e0be86c74b0f00e29887","before":"708de1b06fb0e8463ec25d9d82f2b0ae8daae088","commits":[{"sha":"fb87b961677cfaa8f078e0be86c74b0f00e29887","author":{"email":"dc76e9f0c0006e8f919e0c515c66dbba3982f785@localhost","name":"root"},"message":"update","distinct":true,"url":"https://api.github.com/repos/machchk/report/commits/fb87b961677cfaa8f078e0be86c74b0f00e29887"}]},"public":true,"created_at":"2015-01-01T15:00:13Z"}
,{"id":"2489651184","type":"IssuesEvent","actor":{"id":924247,"login":"KhanBugz","gravatar_id":"","url":"https://api.github.com/users/KhanBugz","avatar_url":"https://avatars.githubusercontent.com/u/924247?"},"repo":{"id":11828772,"name":"Khan/khan-i18n","url":"https://api.github.com/repos/Khan/khan-i18n"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/Khan/khan-i18n/issues/56490","labels_url":"https://api.github.com/repos/Khan/khan-i18n/issues/56490/labels{/name}","comments_url":"https://api.github.com/repos/Khan/khan-i18n/issues/56490/comments","events_url":"https://api.github.com/repos/Khan/khan-i18n/issues/56490/events","html_url":"https://github.com/Khan/khan-i18n/issues/56490","id":53221338,"number":56490,"title":"not-translated:Type the missing numbers in the boxes.","user":{"login":"KhanBugz","id":924247,"avatar_url":"https://avatars.githubusercontent.com/u/924247?v=3","gravatar_id":"","url":"https://api.github.com/users/KhanBugz","html_url":"https://github.com/KhanBugz","followers_url":"https://api.github.com/users/KhanBugz/followers","following_url":"https://api.github.com/users/KhanBugz/following{/other_user}","gists_url":"https://api.github.com/users/KhanBugz/gists{/gist_id}","starred_url":"https://api.github.com/users/KhanBugz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/KhanBugz/subscriptions","organizations_url":"https://api.github.com/users/KhanBugz/orgs","repos_url":"https://api.github.com/users/KhanBugz/repos","events_url":"https://api.github.com/users/KhanBugz/events{/privacy}","received_events_url":"https://api.github.com/users/KhanBugz/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/Khan/khan-i18n/labels/agent_chrome","name":"agent_chrome","color":"ededed"},{"url":"https://api.github.com/repos/Khan/khan-i18n/labels/agent_xp","name":"agent_xp","color":"ededed"},{"url":"https://api.github.com/repos/Khan/khan-i18n/labels/lang_pt","name":"lang_pt","color":"ededed"},{"url":"https://api.github.com/repos/Khan/khan-i18n/labels/type_not-translated","name":"type_not-translated","color":"ededed"}],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:00:13Z","updated_at":"2015-01-01T15:00:13Z","closed_at":null,"body":"Url: https://pt.khanacademy.org/mission/early-math/task/4810474051600384\n\nUser Agent: Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.146 Safari/537.36\n\nProblem Text: \nType the missing numbers in the boxes.\n\nUser Description: \n\n\nNext Steps: \nIf this is a translation issue, fix it. Otherwise verify what is wrong, add a comment in English describing the issue and assign to tzjames."}},"public":true,"created_at":"2015-01-01T15:00:13Z","org":{"id":15455,"login":"Khan","gravatar_id":"","url":"https://api.github.com/orgs/Khan","avatar_url":"https://avatars.githubusercontent.com/u/15455?"}}
,{"id":"2489651192","type":"WatchEvent","actor":{"id":6178707,"login":"jbatch","gravatar_id":"","url":"https://api.github.com/users/jbatch","avatar_url":"https://avatars.githubusercontent.com/u/6178707?"},"repo":{"id":28613552,"name":"jkchapman/LibGDX-GameOfLife","url":"https://api.github.com/repos/jkchapman/LibGDX-GameOfLife"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:00:14Z"}
,{"id":"2489651193","type":"PushEvent","actor":{"id":3160808,"login":"trustedsec","gravatar_id":"","url":"https://api.github.com/users/trustedsec","avatar_url":"https://avatars.githubusercontent.com/u/3160808?"},"repo":{"id":7391261,"name":"trustedsec/social-engineer-toolkit","url":"https://api.github.com/repos/trustedsec/social-engineer-toolkit"},"payload":{"push_id":536864043,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"5a917540e0548f628177be73aadf7182789b5930","before":"1e37d405ce953e5e1c20ec32ab242f5fe33fa597","commits":[{"sha":"5a917540e0548f628177be73aadf7182789b5930","author":{"email":"863b5d643be6fa3d7c1bad8d1f065e00f75dc0c2@trustedsec.com","name":"trustedsec"},"message":"Updated Java Applet with obfuscation.","distinct":true,"url":"https://api.github.com/repos/trustedsec/social-engineer-toolkit/commits/5a917540e0548f628177be73aadf7182789b5930"}]},"public":true,"created_at":"2015-01-01T15:00:14Z"}
,{"id":"2489651194","type":"IssueCommentEvent","actor":{"id":7356386,"login":"Poulern","gravatar_id":"","url":"https://api.github.com/users/Poulern","avatar_url":"https://avatars.githubusercontent.com/u/7356386?"},"repo":{"id":27872927,"name":"cptnnick/F3_PA","url":"https://api.github.com/repos/cptnnick/F3_PA"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/cptnnick/F3_PA/issues/1","labels_url":"https://api.github.com/repos/cptnnick/F3_PA/issues/1/labels{/name}","comments_url":"https://api.github.com/repos/cptnnick/F3_PA/issues/1/comments","events_url":"https://api.github.com/repos/cptnnick/F3_PA/issues/1/events","html_url":"https://github.com/cptnnick/F3_PA/issues/1","id":52843291,"number":1,"title":"Fix line 26 in briefing.sqf","user":{"login":"Poulern","id":7356386,"avatar_url":"https://avatars.githubusercontent.com/u/7356386?v=3","gravatar_id":"","url":"https://api.github.com/users/Poulern","html_url":"https://github.com/Poulern","followers_url":"https://api.github.com/users/Poulern/followers","following_url":"https://api.github.com/users/Poulern/following{/other_user}","gists_url":"https://api.github.com/users/Poulern/gists{/gist_id}","starred_url":"https://api.github.com/users/Poulern/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Poulern/subscriptions","organizations_url":"https://api.github.com/users/Poulern/orgs","repos_url":"https://api.github.com/users/Poulern/repos","events_url":"https://api.github.com/users/Poulern/events{/privacy}","received_events_url":"https://api.github.com/users/Poulern/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/cptnnick/F3_PA/labels/bug","name":"bug","color":"fc2929"}],"state":"open","locked":false,"assignee":{"login":"cptnnick","id":6839081,"avatar_url":"https://avatars.githubusercontent.com/u/6839081?v=3","gravatar_id":"","url":"https://api.github.com/users/cptnnick","html_url":"https://github.com/cptnnick","followers_url":"https://api.github.com/users/cptnnick/followers","following_url":"https://api.github.com/users/cptnnick/following{/other_user}","gists_url":"https://api.github.com/users/cptnnick/gists{/gist_id}","starred_url":"https://api.github.com/users/cptnnick/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cptnnick/subscriptions","organizations_url":"https://api.github.com/users/cptnnick/orgs","repos_url":"https://api.github.com/users/cptnnick/repos","events_url":"https://api.github.com/users/cptnnick/events{/privacy}","received_events_url":"https://api.github.com/users/cptnnick/received_events","type":"User","site_admin":false},"milestone":null,"comments":2,"created_at":"2014-12-25T02:00:16Z","updated_at":"2015-01-01T15:00:14Z","closed_at":null,"body":"[02:48:59] Poulern: http://puu.sh/dIqRL/1d8422a923.png\r\n[02:55:08] Poulern: but i get this erorr\r\n[02:55:13] Poulern: every tiem\r\n[02:55:28] Nick van der Lee: I wanted it designated by side instead of faction\r\n[02:56:02] Nick van der Lee: OH\r\n[02:56:15] Nick van der Lee: Try (str(side player) )\r\n[02:56:45] Poulern: _unitSide = toLower (side player);\r\n[02:56:51] Poulern: _unitSide = (str(side player) )\r\n[02:56:53] Poulern: ?\r\n[02:56:55] Poulern: like so\r\n[02:57:12] Nick van der Lee: _unitSide = toLower (str(side player))\r\n[02:58:03] Poulern: if (_unitSide != toLower (faction (leader group player))) then {_unitSide = toLower (faction (leader group player))};\r\n[02:58:06] Poulern: error missing ;\r\n[02:58:21] Nick van der Lee: Delete that part\r\n[02:58:26] Nick van der Lee: It's obsolete\r\n[02:58:38] Poulern: Make sure to fix the main\r\n[02:58:46] Nick van der Lee: Make a ticket\r\n[02:58:48] Poulern: briefing.sqf in the F3_PA\r\n[02:58:51] Poulern: okay man\r\n[02:58:55] Nick van der Lee: I'll need to fix in main F3 too\r\n[02:59:11] Nick van der Lee: It's 3 AM I ain't gonna remember : P"},"comment":{"url":"https://api.github.com/repos/cptnnick/F3_PA/issues/comments/68488497","html_url":"https://github.com/cptnnick/F3_PA/issues/1#issuecomment-68488497","issue_url":"https://api.github.com/repos/cptnnick/F3_PA/issues/1","id":68488497,"user":{"login":"Poulern","id":7356386,"avatar_url":"https://avatars.githubusercontent.com/u/7356386?v=3","gravatar_id":"","url":"https://api.github.com/users/Poulern","html_url":"https://github.com/Poulern","followers_url":"https://api.github.com/users/Poulern/followers","following_url":"https://api.github.com/users/Poulern/following{/other_user}","gists_url":"https://api.github.com/users/Poulern/gists{/gist_id}","starred_url":"https://api.github.com/users/Poulern/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Poulern/subscriptions","organizations_url":"https://api.github.com/users/Poulern/orgs","repos_url":"https://api.github.com/users/Poulern/repos","events_url":"https://api.github.com/users/Poulern/events{/privacy}","received_events_url":"https://api.github.com/users/Poulern/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:00:14Z","updated_at":"2015-01-01T15:00:14Z","body":"Sorry yes this has been fixed. GJ"}},"public":true,"created_at":"2015-01-01T15:00:14Z"}
,{"id":"2489651195","type":"PushEvent","actor":{"id":636687,"login":"sjahl","gravatar_id":"","url":"https://api.github.com/users/sjahl","avatar_url":"https://avatars.githubusercontent.com/u/636687?"},"repo":{"id":24571081,"name":"sjahl/user-env","url":"https://api.github.com/repos/sjahl/user-env"},"payload":{"push_id":536864044,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"6de3f031e77281dec134aca51012ff49cc3eb77c","before":"ae93eb7289fa8b2c3c05f086d3f3cf07d4aa1778","commits":[{"sha":"6de3f031e77281dec134aca51012ff49cc3eb77c","author":{"email":"ee6934e3c2c933d3ba2f7adfcb5ee9c4f3530eff@gmail.com","name":"Stephen Jahl"},"message":"make user-env.yml a little happier on a fresh host","distinct":true,"url":"https://api.github.com/repos/sjahl/user-env/commits/6de3f031e77281dec134aca51012ff49cc3eb77c"}]},"public":true,"created_at":"2015-01-01T15:00:15Z"}
,{"id":"2489651200","type":"PushEvent","actor":{"id":2101973,"login":"konjac","gravatar_id":"","url":"https://api.github.com/users/konjac","avatar_url":"https://avatars.githubusercontent.com/u/2101973?"},"repo":{"id":24664906,"name":"konjac/calendars","url":"https://api.github.com/repos/konjac/calendars"},"payload":{"push_id":536864048,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"02a80bddfd8a97c82e1ba8744ada2be5ab345fc9","before":"beb1d032f0c16f4acb341ea7d1f3d76ecc7af2f6","commits":[{"sha":"02a80bddfd8a97c82e1ba8744ada2be5ab345fc9","author":{"email":"6dc96bd73a12a2b22abd88d2fca39328a25102c5@gmail.com","name":"konjac"},"message":"update","distinct":true,"url":"https://api.github.com/repos/konjac/calendars/commits/02a80bddfd8a97c82e1ba8744ada2be5ab345fc9"}]},"public":true,"created_at":"2015-01-01T15:00:15Z"}
,{"id":"2489651202","type":"CreateEvent","actor":{"id":3000391,"login":"maybezi","gravatar_id":"","url":"https://api.github.com/users/maybezi","avatar_url":"https://avatars.githubusercontent.com/u/3000391?"},"repo":{"id":28687115,"name":"maybezi/project","url":"https://api.github.com/repos/maybezi/project"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"This is a test project for learning Git","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:00:15Z"}
,{"id":"2489651203","type":"IssuesEvent","actor":{"id":4005415,"login":"JDGrimes","gravatar_id":"","url":"https://api.github.com/users/JDGrimes","avatar_url":"https://avatars.githubusercontent.com/u/4005415?"},"repo":{"id":17290397,"name":"WordPoints/wordpointsorg","url":"https://api.github.com/repos/WordPoints/wordpointsorg"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/WordPoints/wordpointsorg/issues/11","labels_url":"https://api.github.com/repos/WordPoints/wordpointsorg/issues/11/labels{/name}","comments_url":"https://api.github.com/repos/WordPoints/wordpointsorg/issues/11/comments","events_url":"https://api.github.com/repos/WordPoints/wordpointsorg/issues/11/events","html_url":"https://github.com/WordPoints/wordpointsorg/issues/11","id":53221339,"number":11,"title":"I18n support for the module APIs","user":{"login":"JDGrimes","id":4005415,"avatar_url":"https://avatars.githubusercontent.com/u/4005415?v=3","gravatar_id":"","url":"https://api.github.com/users/JDGrimes","html_url":"https://github.com/JDGrimes","followers_url":"https://api.github.com/users/JDGrimes/followers","following_url":"https://api.github.com/users/JDGrimes/following{/other_user}","gists_url":"https://api.github.com/users/JDGrimes/gists{/gist_id}","starred_url":"https://api.github.com/users/JDGrimes/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/JDGrimes/subscriptions","organizations_url":"https://api.github.com/users/JDGrimes/orgs","repos_url":"https://api.github.com/users/JDGrimes/repos","events_url":"https://api.github.com/users/JDGrimes/events{/privacy}","received_events_url":"https://api.github.com/users/JDGrimes/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/WordPoints/wordpointsorg/labels/enhancement","name":"enhancement","color":"84b6eb"}],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:00:15Z","updated_at":"2015-01-01T15:00:15Z","closed_at":null,"body":"Module APIs should be able to declare support for I18n and we should then use an interface to automatically install the correct l10n files for the installed modules based on the site's language."}},"public":true,"created_at":"2015-01-01T15:00:15Z","org":{"id":6233660,"login":"WordPoints","gravatar_id":"","url":"https://api.github.com/orgs/WordPoints","avatar_url":"https://avatars.githubusercontent.com/u/6233660?"}}
,{"id":"2489651214","type":"CreateEvent","actor":{"id":10364620,"login":"quixing","gravatar_id":"","url":"https://api.github.com/users/quixing","avatar_url":"https://avatars.githubusercontent.com/u/10364620?"},"repo":{"id":28688601,"name":"quixing/help-me","url":"https://api.github.com/repos/quixing/help-me"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:00:16Z"}
,{"id":"2489651215","type":"PushEvent","actor":{"id":16563,"login":"kless","gravatar_id":"","url":"https://api.github.com/users/kless","avatar_url":"https://avatars.githubusercontent.com/u/16563?"},"repo":{"id":22802018,"name":"kless/dat","url":"https://api.github.com/repos/kless/dat"},"payload":{"push_id":536864059,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"383d2078d085f3882288158a92c6ada80d32b852","before":"1704aca17c720f75a4749e1ac7c15e20970ae9af","commits":[{"sha":"383d2078d085f3882288158a92c6ada80d32b852","author":{"email":"35a2c6fae61f8077aab61faa4019722abf05093c@matx.cc","name":"Jonas mg"},"message":"Remove type Interface to Value","distinct":true,"url":"https://api.github.com/repos/kless/dat/commits/383d2078d085f3882288158a92c6ada80d32b852"}]},"public":true,"created_at":"2015-01-01T15:00:16Z"}
,{"id":"2489651220","type":"IssueCommentEvent","actor":{"id":6339799,"login":"izuzero","gravatar_id":"","url":"https://api.github.com/users/izuzero","avatar_url":"https://avatars.githubusercontent.com/u/6339799?"},"repo":{"id":28270952,"name":"izuzero/xe-module-ajaxboard","url":"https://api.github.com/repos/izuzero/xe-module-ajaxboard"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/izuzero/xe-module-ajaxboard/issues/20","labels_url":"https://api.github.com/repos/izuzero/xe-module-ajaxboard/issues/20/labels{/name}","comments_url":"https://api.github.com/repos/izuzero/xe-module-ajaxboard/issues/20/comments","events_url":"https://api.github.com/repos/izuzero/xe-module-ajaxboard/issues/20/events","html_url":"https://github.com/izuzero/xe-module-ajaxboard/issues/20","id":53221232,"number":20,"title":"게시글 및 댓글 삭제 시 새로고침이 되는 문제","user":{"login":"izuzero","id":6339799,"avatar_url":"https://avatars.githubusercontent.com/u/6339799?v=3","gravatar_id":"","url":"https://api.github.com/users/izuzero","html_url":"https://github.com/izuzero","followers_url":"https://api.github.com/users/izuzero/followers","following_url":"https://api.github.com/users/izuzero/following{/other_user}","gists_url":"https://api.github.com/users/izuzero/gists{/gist_id}","starred_url":"https://api.github.com/users/izuzero/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/izuzero/subscriptions","organizations_url":"https://api.github.com/users/izuzero/orgs","repos_url":"https://api.github.com/users/izuzero/repos","events_url":"https://api.github.com/users/izuzero/events{/privacy}","received_events_url":"https://api.github.com/users/izuzero/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/izuzero/xe-module-ajaxboard/labels/type%2Fbug","name":"type/bug","color":"eb6420"}],"state":"open","locked":false,"assignee":{"login":"izuzero","id":6339799,"avatar_url":"https://avatars.githubusercontent.com/u/6339799?v=3","gravatar_id":"","url":"https://api.github.com/users/izuzero","html_url":"https://github.com/izuzero","followers_url":"https://api.github.com/users/izuzero/followers","following_url":"https://api.github.com/users/izuzero/following{/other_user}","gists_url":"https://api.github.com/users/izuzero/gists{/gist_id}","starred_url":"https://api.github.com/users/izuzero/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/izuzero/subscriptions","organizations_url":"https://api.github.com/users/izuzero/orgs","repos_url":"https://api.github.com/users/izuzero/repos","events_url":"https://api.github.com/users/izuzero/events{/privacy}","received_events_url":"https://api.github.com/users/izuzero/received_events","type":"User","site_admin":false},"milestone":{"url":"https://api.github.com/repos/izuzero/xe-module-ajaxboard/milestones/3","labels_url":"https://api.github.com/repos/izuzero/xe-module-ajaxboard/milestones/3/labels","id":917346,"number":3,"title":"2.1.1","description":"","creator":{"login":"izuzero","id":6339799,"avatar_url":"https://avatars.githubusercontent.com/u/6339799?v=3","gravatar_id":"","url":"https://api.github.com/users/izuzero","html_url":"https://github.com/izuzero","followers_url":"https://api.github.com/users/izuzero/followers","following_url":"https://api.github.com/users/izuzero/following{/other_user}","gists_url":"https://api.github.com/users/izuzero/gists{/gist_id}","starred_url":"https://api.github.com/users/izuzero/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/izuzero/subscriptions","organizations_url":"https://api.github.com/users/izuzero/orgs","repos_url":"https://api.github.com/users/izuzero/repos","events_url":"https://api.github.com/users/izuzero/events{/privacy}","received_events_url":"https://api.github.com/users/izuzero/received_events","type":"User","site_admin":false},"open_issues":1,"closed_issues":9,"state":"open","created_at":"2014-12-30T04:09:29Z","updated_at":"2015-01-01T14:55:01Z","due_on":null,"closed_at":null},"comments":2,"created_at":"2015-01-01T14:54:49Z","updated_at":"2015-01-01T15:00:16Z","closed_at":null,"body":"기본 게시판 대응 플러그인 #19"},"comment":{"url":"https://api.github.com/repos/izuzero/xe-module-ajaxboard/issues/comments/68488498","html_url":"https://github.com/izuzero/xe-module-ajaxboard/issues/20#issuecomment-68488498","issue_url":"https://api.github.com/repos/izuzero/xe-module-ajaxboard/issues/20","id":68488498,"user":{"login":"izuzero","id":6339799,"avatar_url":"https://avatars.githubusercontent.com/u/6339799?v=3","gravatar_id":"","url":"https://api.github.com/users/izuzero","html_url":"https://github.com/izuzero","followers_url":"https://api.github.com/users/izuzero/followers","following_url":"https://api.github.com/users/izuzero/following{/other_user}","gists_url":"https://api.github.com/users/izuzero/gists{/gist_id}","starred_url":"https://api.github.com/users/izuzero/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/izuzero/subscriptions","organizations_url":"https://api.github.com/users/izuzero/orgs","repos_url":"https://api.github.com/users/izuzero/repos","events_url":"https://api.github.com/users/izuzero/events{/privacy}","received_events_url":"https://api.github.com/users/izuzero/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:00:16Z","updated_at":"2015-01-01T15:00:16Z","body":"fixed ec819b9"}},"public":true,"created_at":"2015-01-01T15:00:16Z"}
,{"id":"2489651221","type":"WatchEvent","actor":{"id":5496929,"login":"jakblak","gravatar_id":"","url":"https://api.github.com/users/jakblak","avatar_url":"https://avatars.githubusercontent.com/u/5496929?"},"repo":{"id":2328523,"name":"n1k0/casperjs","url":"https://api.github.com/repos/n1k0/casperjs"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:00:17Z"}
,{"id":"2489651223","type":"IssueCommentEvent","actor":{"id":487050,"login":"shlevy","gravatar_id":"","url":"https://api.github.com/users/shlevy","avatar_url":"https://avatars.githubusercontent.com/u/487050?"},"repo":{"id":4542716,"name":"NixOS/nixpkgs","url":"https://api.github.com/repos/NixOS/nixpkgs"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/NixOS/nixpkgs/issues/5521","labels_url":"https://api.github.com/repos/NixOS/nixpkgs/issues/5521/labels{/name}","comments_url":"https://api.github.com/repos/NixOS/nixpkgs/issues/5521/comments","events_url":"https://api.github.com/repos/NixOS/nixpkgs/issues/5521/events","html_url":"https://github.com/NixOS/nixpkgs/pull/5521","id":53219802,"number":5521,"title":"fetchgit: give output a nicer name","user":{"login":"shlevy","id":487050,"avatar_url":"https://avatars.githubusercontent.com/u/487050?v=3","gravatar_id":"","url":"https://api.github.com/users/shlevy","html_url":"https://github.com/shlevy","followers_url":"https://api.github.com/users/shlevy/followers","following_url":"https://api.github.com/users/shlevy/following{/other_user}","gists_url":"https://api.github.com/users/shlevy/gists{/gist_id}","starred_url":"https://api.github.com/users/shlevy/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/shlevy/subscriptions","organizations_url":"https://api.github.com/users/shlevy/orgs","repos_url":"https://api.github.com/users/shlevy/repos","events_url":"https://api.github.com/users/shlevy/events{/privacy}","received_events_url":"https://api.github.com/users/shlevy/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":5,"created_at":"2015-01-01T13:35:14Z","updated_at":"2015-01-01T15:00:17Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/NixOS/nixpkgs/pulls/5521","html_url":"https://github.com/NixOS/nixpkgs/pull/5521","diff_url":"https://github.com/NixOS/nixpkgs/pull/5521.diff","patch_url":"https://github.com/NixOS/nixpkgs/pull/5521.patch"},"body":""},"comment":{"url":"https://api.github.com/repos/NixOS/nixpkgs/issues/comments/68488499","html_url":"https://github.com/NixOS/nixpkgs/pull/5521#issuecomment-68488499","issue_url":"https://api.github.com/repos/NixOS/nixpkgs/issues/5521","id":68488499,"user":{"login":"shlevy","id":487050,"avatar_url":"https://avatars.githubusercontent.com/u/487050?v=3","gravatar_id":"","url":"https://api.github.com/users/shlevy","html_url":"https://github.com/shlevy","followers_url":"https://api.github.com/users/shlevy/followers","following_url":"https://api.github.com/users/shlevy/following{/other_user}","gists_url":"https://api.github.com/users/shlevy/gists{/gist_id}","starred_url":"https://api.github.com/users/shlevy/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/shlevy/subscriptions","organizations_url":"https://api.github.com/users/shlevy/orgs","repos_url":"https://api.github.com/users/shlevy/repos","events_url":"https://api.github.com/users/shlevy/events{/privacy}","received_events_url":"https://api.github.com/users/shlevy/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:00:17Z","updated_at":"2015-01-01T15:00:17Z","body":"@vcunat concerns addressed."}},"public":true,"created_at":"2015-01-01T15:00:17Z","org":{"id":487568,"login":"NixOS","gravatar_id":"","url":"https://api.github.com/orgs/NixOS","avatar_url":"https://avatars.githubusercontent.com/u/487568?"}}
,{"id":"2489651224","type":"GollumEvent","actor":{"id":114114,"login":"weakish","gravatar_id":"","url":"https://api.github.com/users/weakish","avatar_url":"https://avatars.githubusercontent.com/u/114114?"},"repo":{"id":28688228,"name":"weakish/greylist","url":"https://api.github.com/repos/weakish/greylist"},"payload":{"pages":[{"page_name":"Home","title":"Home","summary":null,"action":"created","sha":"3f3049cbe6b8a4a6e1272317a3bfb67e6a376c71","html_url":"https://github.com/weakish/greylist/wiki/Home"}]},"public":true,"created_at":"2015-01-01T15:00:17Z"}
,{"id":"2489651225","type":"CreateEvent","actor":{"id":10364695,"login":"Abeer-y","gravatar_id":"","url":"https://api.github.com/users/Abeer-y","avatar_url":"https://avatars.githubusercontent.com/u/10364695?"},"repo":{"id":28688602,"name":"Abeer-y/Ultimatum-Game-on-A-Barabasi-Albert-Network","url":"https://api.github.com/repos/Abeer-y/Ultimatum-Game-on-A-Barabasi-Albert-Network"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:00:17Z"}
,{"id":"2489651230","type":"WatchEvent","actor":{"id":8199224,"login":"boccaperta-it","gravatar_id":"","url":"https://api.github.com/users/boccaperta-it","avatar_url":"https://avatars.githubusercontent.com/u/8199224?"},"repo":{"id":13042462,"name":"mozilla/Fira","url":"https://api.github.com/repos/mozilla/Fira"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:00:17Z","org":{"id":131524,"login":"mozilla","gravatar_id":"","url":"https://api.github.com/orgs/mozilla","avatar_url":"https://avatars.githubusercontent.com/u/131524?"}}
,{"id":"2489651233","type":"IssuesEvent","actor":{"id":6339799,"login":"izuzero","gravatar_id":"","url":"https://api.github.com/users/izuzero","avatar_url":"https://avatars.githubusercontent.com/u/6339799?"},"repo":{"id":28270952,"name":"izuzero/xe-module-ajaxboard","url":"https://api.github.com/repos/izuzero/xe-module-ajaxboard"},"payload":{"action":"closed","issue":{"url":"https://api.github.com/repos/izuzero/xe-module-ajaxboard/issues/20","labels_url":"https://api.github.com/repos/izuzero/xe-module-ajaxboard/issues/20/labels{/name}","comments_url":"https://api.github.com/repos/izuzero/xe-module-ajaxboard/issues/20/comments","events_url":"https://api.github.com/repos/izuzero/xe-module-ajaxboard/issues/20/events","html_url":"https://github.com/izuzero/xe-module-ajaxboard/issues/20","id":53221232,"number":20,"title":"게시글 및 댓글 삭제 시 새로고침이 되는 문제","user":{"login":"izuzero","id":6339799,"avatar_url":"https://avatars.githubusercontent.com/u/6339799?v=3","gravatar_id":"","url":"https://api.github.com/users/izuzero","html_url":"https://github.com/izuzero","followers_url":"https://api.github.com/users/izuzero/followers","following_url":"https://api.github.com/users/izuzero/following{/other_user}","gists_url":"https://api.github.com/users/izuzero/gists{/gist_id}","starred_url":"https://api.github.com/users/izuzero/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/izuzero/subscriptions","organizations_url":"https://api.github.com/users/izuzero/orgs","repos_url":"https://api.github.com/users/izuzero/repos","events_url":"https://api.github.com/users/izuzero/events{/privacy}","received_events_url":"https://api.github.com/users/izuzero/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/izuzero/xe-module-ajaxboard/labels/type%2Fbug","name":"type/bug","color":"eb6420"}],"state":"closed","locked":false,"assignee":{"login":"izuzero","id":6339799,"avatar_url":"https://avatars.githubusercontent.com/u/6339799?v=3","gravatar_id":"","url":"https://api.github.com/users/izuzero","html_url":"https://github.com/izuzero","followers_url":"https://api.github.com/users/izuzero/followers","following_url":"https://api.github.com/users/izuzero/following{/other_user}","gists_url":"https://api.github.com/users/izuzero/gists{/gist_id}","starred_url":"https://api.github.com/users/izuzero/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/izuzero/subscriptions","organizations_url":"https://api.github.com/users/izuzero/orgs","repos_url":"https://api.github.com/users/izuzero/repos","events_url":"https://api.github.com/users/izuzero/events{/privacy}","received_events_url":"https://api.github.com/users/izuzero/received_events","type":"User","site_admin":false},"milestone":{"url":"https://api.github.com/repos/izuzero/xe-module-ajaxboard/milestones/3","labels_url":"https://api.github.com/repos/izuzero/xe-module-ajaxboard/milestones/3/labels","id":917346,"number":3,"title":"2.1.1","description":"","creator":{"login":"izuzero","id":6339799,"avatar_url":"https://avatars.githubusercontent.com/u/6339799?v=3","gravatar_id":"","url":"https://api.github.com/users/izuzero","html_url":"https://github.com/izuzero","followers_url":"https://api.github.com/users/izuzero/followers","following_url":"https://api.github.com/users/izuzero/following{/other_user}","gists_url":"https://api.github.com/users/izuzero/gists{/gist_id}","starred_url":"https://api.github.com/users/izuzero/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/izuzero/subscriptions","organizations_url":"https://api.github.com/users/izuzero/orgs","repos_url":"https://api.github.com/users/izuzero/repos","events_url":"https://api.github.com/users/izuzero/events{/privacy}","received_events_url":"https://api.github.com/users/izuzero/received_events","type":"User","site_admin":false},"open_issues":0,"closed_issues":10,"state":"open","created_at":"2014-12-30T04:09:29Z","updated_at":"2015-01-01T15:00:18Z","due_on":null,"closed_at":null},"comments":2,"created_at":"2015-01-01T14:54:49Z","updated_at":"2015-01-01T15:00:18Z","closed_at":"2015-01-01T15:00:18Z","body":"기본 게시판 대응 플러그인 #19"}},"public":true,"created_at":"2015-01-01T15:00:18Z"}
,{"id":"2489651237","type":"CreateEvent","actor":{"id":621232,"login":"deeperx","gravatar_id":"","url":"https://api.github.com/users/deeperx","avatar_url":"https://avatars.githubusercontent.com/u/621232?"},"repo":{"id":28667947,"name":"deeperx/dojo_rules","url":"https://api.github.com/repos/deeperx/dojo_rules"},"payload":{"ref":"kill_list","ref_type":"branch","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:00:18Z"}
,{"id":"2489651240","type":"IssuesEvent","actor":{"id":7356386,"login":"Poulern","gravatar_id":"","url":"https://api.github.com/users/Poulern","avatar_url":"https://avatars.githubusercontent.com/u/7356386?"},"repo":{"id":27872927,"name":"cptnnick/F3_PA","url":"https://api.github.com/repos/cptnnick/F3_PA"},"payload":{"action":"closed","issue":{"url":"https://api.github.com/repos/cptnnick/F3_PA/issues/1","labels_url":"https://api.github.com/repos/cptnnick/F3_PA/issues/1/labels{/name}","comments_url":"https://api.github.com/repos/cptnnick/F3_PA/issues/1/comments","events_url":"https://api.github.com/repos/cptnnick/F3_PA/issues/1/events","html_url":"https://github.com/cptnnick/F3_PA/issues/1","id":52843291,"number":1,"title":"Fix line 26 in briefing.sqf","user":{"login":"Poulern","id":7356386,"avatar_url":"https://avatars.githubusercontent.com/u/7356386?v=3","gravatar_id":"","url":"https://api.github.com/users/Poulern","html_url":"https://github.com/Poulern","followers_url":"https://api.github.com/users/Poulern/followers","following_url":"https://api.github.com/users/Poulern/following{/other_user}","gists_url":"https://api.github.com/users/Poulern/gists{/gist_id}","starred_url":"https://api.github.com/users/Poulern/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Poulern/subscriptions","organizations_url":"https://api.github.com/users/Poulern/orgs","repos_url":"https://api.github.com/users/Poulern/repos","events_url":"https://api.github.com/users/Poulern/events{/privacy}","received_events_url":"https://api.github.com/users/Poulern/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/cptnnick/F3_PA/labels/bug","name":"bug","color":"fc2929"}],"state":"closed","locked":false,"assignee":{"login":"cptnnick","id":6839081,"avatar_url":"https://avatars.githubusercontent.com/u/6839081?v=3","gravatar_id":"","url":"https://api.github.com/users/cptnnick","html_url":"https://github.com/cptnnick","followers_url":"https://api.github.com/users/cptnnick/followers","following_url":"https://api.github.com/users/cptnnick/following{/other_user}","gists_url":"https://api.github.com/users/cptnnick/gists{/gist_id}","starred_url":"https://api.github.com/users/cptnnick/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cptnnick/subscriptions","organizations_url":"https://api.github.com/users/cptnnick/orgs","repos_url":"https://api.github.com/users/cptnnick/repos","events_url":"https://api.github.com/users/cptnnick/events{/privacy}","received_events_url":"https://api.github.com/users/cptnnick/received_events","type":"User","site_admin":false},"milestone":null,"comments":2,"created_at":"2014-12-25T02:00:16Z","updated_at":"2015-01-01T15:00:18Z","closed_at":"2015-01-01T15:00:18Z","body":"[02:48:59] Poulern: http://puu.sh/dIqRL/1d8422a923.png\r\n[02:55:08] Poulern: but i get this erorr\r\n[02:55:13] Poulern: every tiem\r\n[02:55:28] Nick van der Lee: I wanted it designated by side instead of faction\r\n[02:56:02] Nick van der Lee: OH\r\n[02:56:15] Nick van der Lee: Try (str(side player) )\r\n[02:56:45] Poulern: _unitSide = toLower (side player);\r\n[02:56:51] Poulern: _unitSide = (str(side player) )\r\n[02:56:53] Poulern: ?\r\n[02:56:55] Poulern: like so\r\n[02:57:12] Nick van der Lee: _unitSide = toLower (str(side player))\r\n[02:58:03] Poulern: if (_unitSide != toLower (faction (leader group player))) then {_unitSide = toLower (faction (leader group player))};\r\n[02:58:06] Poulern: error missing ;\r\n[02:58:21] Nick van der Lee: Delete that part\r\n[02:58:26] Nick van der Lee: It's obsolete\r\n[02:58:38] Poulern: Make sure to fix the main\r\n[02:58:46] Nick van der Lee: Make a ticket\r\n[02:58:48] Poulern: briefing.sqf in the F3_PA\r\n[02:58:51] Poulern: okay man\r\n[02:58:55] Nick van der Lee: I'll need to fix in main F3 too\r\n[02:59:11] Nick van der Lee: It's 3 AM I ain't gonna remember : P"}},"public":true,"created_at":"2015-01-01T15:00:19Z"}
,{"id":"2489651243","type":"PushEvent","actor":{"id":1856621,"login":"InternetDevels","gravatar_id":"","url":"https://api.github.com/users/InternetDevels","avatar_url":"https://avatars.githubusercontent.com/u/1856621?"},"repo":{"id":20291263,"name":"InternetDevels/drupalcores","url":"https://api.github.com/repos/InternetDevels/drupalcores"},"payload":{"push_id":536864073,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"ca63a6bdd496e45647e6ff7b4bdaf5e3d9423e21","before":"82c54cbaeccfb24c23e3b3c9ee76941851557dc3","commits":[{"sha":"ca63a6bdd496e45647e6ff7b4bdaf5e3d9423e21","author":{"email":"141a748f5c0795fdf68eaad85b65480c92abbe5f@internetdevels.com","name":"mula"},"message":"Update bump.","distinct":true,"url":"https://api.github.com/repos/InternetDevels/drupalcores/commits/ca63a6bdd496e45647e6ff7b4bdaf5e3d9423e21"}]},"public":true,"created_at":"2015-01-01T15:00:19Z"}
,{"id":"2489651244","type":"PushEvent","actor":{"id":4419146,"login":"hex7c0","gravatar_id":"","url":"https://api.github.com/users/hex7c0","avatar_url":"https://avatars.githubusercontent.com/u/4419146?"},"repo":{"id":23516583,"name":"hex7c0/grunt-endline","url":"https://api.github.com/repos/hex7c0/grunt-endline"},"payload":{"push_id":536864074,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"1c234ab7ab43bd908f9a0b4ba53f6b8f6e17031f","before":"5d2a936b24a75d1e8dc6893d9e3a355301073d12","commits":[{"sha":"1c234ab7ab43bd908f9a0b4ba53f6b8f6e17031f","author":{"email":"de7d41e33d0bb4bff781eaaec15a77fd8e342187@gmail.com","name":"hex7c0"},"message":"travis docker","distinct":true,"url":"https://api.github.com/repos/hex7c0/grunt-endline/commits/1c234ab7ab43bd908f9a0b4ba53f6b8f6e17031f"}]},"public":true,"created_at":"2015-01-01T15:00:19Z"}
,{"id":"2489651247","type":"PushEvent","actor":{"id":597140,"login":"chris-roerig","gravatar_id":"","url":"https://api.github.com/users/chris-roerig","avatar_url":"https://avatars.githubusercontent.com/u/597140?"},"repo":{"id":28304259,"name":"chris-roerig/52-projects","url":"https://api.github.com/repos/chris-roerig/52-projects"},"payload":{"push_id":536864076,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"a3cf6610515801e3227c6ac8e1424f005d6256ce","before":"dbd975ebba88d4b3115c22f90bc933cb92ffd3ce","commits":[{"sha":"a3cf6610515801e3227c6ac8e1424f005d6256ce","author":{"email":"9690d8731dc55fbdec51a2812b0d3c75d4937fe1@gmail.com","name":"Chris"},"message":"Added 2015 link to readme","distinct":true,"url":"https://api.github.com/repos/chris-roerig/52-projects/commits/a3cf6610515801e3227c6ac8e1424f005d6256ce"}]},"public":true,"created_at":"2015-01-01T15:00:19Z"}
,{"id":"2489651253","type":"PullRequestEvent","actor":{"id":3244065,"login":"USunOfBeach","gravatar_id":"","url":"https://api.github.com/users/USunOfBeach","avatar_url":"https://avatars.githubusercontent.com/u/3244065?"},"repo":{"id":20825841,"name":"USunOfBeach/GrimDawnZH","url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH"},"payload":{"action":"opened","number":47,"pull_request":{"url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/pulls/47","id":26743768,"html_url":"https://github.com/USunOfBeach/GrimDawnZH/pull/47","diff_url":"https://github.com/USunOfBeach/GrimDawnZH/pull/47.diff","patch_url":"https://github.com/USunOfBeach/GrimDawnZH/pull/47.patch","issue_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/issues/47","number":47,"state":"open","locked":false,"title":"update","user":{"login":"USunOfBeach","id":3244065,"avatar_url":"https://avatars.githubusercontent.com/u/3244065?v=3","gravatar_id":"","url":"https://api.github.com/users/USunOfBeach","html_url":"https://github.com/USunOfBeach","followers_url":"https://api.github.com/users/USunOfBeach/followers","following_url":"https://api.github.com/users/USunOfBeach/following{/other_user}","gists_url":"https://api.github.com/users/USunOfBeach/gists{/gist_id}","starred_url":"https://api.github.com/users/USunOfBeach/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/USunOfBeach/subscriptions","organizations_url":"https://api.github.com/users/USunOfBeach/orgs","repos_url":"https://api.github.com/users/USunOfBeach/repos","events_url":"https://api.github.com/users/USunOfBeach/events{/privacy}","received_events_url":"https://api.github.com/users/USunOfBeach/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:00:20Z","updated_at":"2015-01-01T15:00:20Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/pulls/47/commits","review_comments_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/pulls/47/comments","review_comment_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/pulls/comments/{number}","comments_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/issues/47/comments","statuses_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/statuses/e723da36c4de572768afa46b834e18cbe1d551c2","head":{"label":"solael:master","ref":"master","sha":"e723da36c4de572768afa46b834e18cbe1d551c2","user":{"login":"solael","id":5739702,"avatar_url":"https://avatars.githubusercontent.com/u/5739702?v=3","gravatar_id":"","url":"https://api.github.com/users/solael","html_url":"https://github.com/solael","followers_url":"https://api.github.com/users/solael/followers","following_url":"https://api.github.com/users/solael/following{/other_user}","gists_url":"https://api.github.com/users/solael/gists{/gist_id}","starred_url":"https://api.github.com/users/solael/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/solael/subscriptions","organizations_url":"https://api.github.com/users/solael/orgs","repos_url":"https://api.github.com/users/solael/repos","events_url":"https://api.github.com/users/solael/events{/privacy}","received_events_url":"https://api.github.com/users/solael/received_events","type":"User","site_admin":false},"repo":{"id":20801623,"name":"GrimDawnZH","full_name":"solael/GrimDawnZH","owner":{"login":"solael","id":5739702,"avatar_url":"https://avatars.githubusercontent.com/u/5739702?v=3","gravatar_id":"","url":"https://api.github.com/users/solael","html_url":"https://github.com/solael","followers_url":"https://api.github.com/users/solael/followers","following_url":"https://api.github.com/users/solael/following{/other_user}","gists_url":"https://api.github.com/users/solael/gists{/gist_id}","starred_url":"https://api.github.com/users/solael/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/solael/subscriptions","organizations_url":"https://api.github.com/users/solael/orgs","repos_url":"https://api.github.com/users/solael/repos","events_url":"https://api.github.com/users/solael/events{/privacy}","received_events_url":"https://api.github.com/users/solael/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/solael/GrimDawnZH","description":"","fork":false,"url":"https://api.github.com/repos/solael/GrimDawnZH","forks_url":"https://api.github.com/repos/solael/GrimDawnZH/forks","keys_url":"https://api.github.com/repos/solael/GrimDawnZH/keys{/key_id}","collaborators_url":"https://api.github.com/repos/solael/GrimDawnZH/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/solael/GrimDawnZH/teams","hooks_url":"https://api.github.com/repos/solael/GrimDawnZH/hooks","issue_events_url":"https://api.github.com/repos/solael/GrimDawnZH/issues/events{/number}","events_url":"https://api.github.com/repos/solael/GrimDawnZH/events","assignees_url":"https://api.github.com/repos/solael/GrimDawnZH/assignees{/user}","branches_url":"https://api.github.com/repos/solael/GrimDawnZH/branches{/branch}","tags_url":"https://api.github.com/repos/solael/GrimDawnZH/tags","blobs_url":"https://api.github.com/repos/solael/GrimDawnZH/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/solael/GrimDawnZH/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/solael/GrimDawnZH/git/refs{/sha}","trees_url":"https://api.github.com/repos/solael/GrimDawnZH/git/trees{/sha}","statuses_url":"https://api.github.com/repos/solael/GrimDawnZH/statuses/{sha}","languages_url":"https://api.github.com/repos/solael/GrimDawnZH/languages","stargazers_url":"https://api.github.com/repos/solael/GrimDawnZH/stargazers","contributors_url":"https://api.github.com/repos/solael/GrimDawnZH/contributors","subscribers_url":"https://api.github.com/repos/solael/GrimDawnZH/subscribers","subscription_url":"https://api.github.com/repos/solael/GrimDawnZH/subscription","commits_url":"https://api.github.com/repos/solael/GrimDawnZH/commits{/sha}","git_commits_url":"https://api.github.com/repos/solael/GrimDawnZH/git/commits{/sha}","comments_url":"https://api.github.com/repos/solael/GrimDawnZH/comments{/number}","issue_comment_url":"https://api.github.com/repos/solael/GrimDawnZH/issues/comments/{number}","contents_url":"https://api.github.com/repos/solael/GrimDawnZH/contents/{+path}","compare_url":"https://api.github.com/repos/solael/GrimDawnZH/compare/{base}...{head}","merges_url":"https://api.github.com/repos/solael/GrimDawnZH/merges","archive_url":"https://api.github.com/repos/solael/GrimDawnZH/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/solael/GrimDawnZH/downloads","issues_url":"https://api.github.com/repos/solael/GrimDawnZH/issues{/number}","pulls_url":"https://api.github.com/repos/solael/GrimDawnZH/pulls{/number}","milestones_url":"https://api.github.com/repos/solael/GrimDawnZH/milestones{/number}","notifications_url":"https://api.github.com/repos/solael/GrimDawnZH/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/solael/GrimDawnZH/labels{/name}","releases_url":"https://api.github.com/repos/solael/GrimDawnZH/releases{/id}","created_at":"2014-06-13T11:07:41Z","updated_at":"2014-10-28T17:53:11Z","pushed_at":"2015-01-01T07:24:37Z","git_url":"git://github.com/solael/GrimDawnZH.git","ssh_url":"git@github.com:solael/GrimDawnZH.git","clone_url":"https://github.com/solael/GrimDawnZH.git","svn_url":"https://github.com/solael/GrimDawnZH","homepage":null,"size":3500,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":7,"mirror_url":null,"open_issues_count":0,"forks":7,"open_issues":0,"watchers":0,"default_branch":"master"}},"base":{"label":"USunOfBeach:master","ref":"master","sha":"fb8eb3c24284a05c0300921584f654629dd42b1d","user":{"login":"USunOfBeach","id":3244065,"avatar_url":"https://avatars.githubusercontent.com/u/3244065?v=3","gravatar_id":"","url":"https://api.github.com/users/USunOfBeach","html_url":"https://github.com/USunOfBeach","followers_url":"https://api.github.com/users/USunOfBeach/followers","following_url":"https://api.github.com/users/USunOfBeach/following{/other_user}","gists_url":"https://api.github.com/users/USunOfBeach/gists{/gist_id}","starred_url":"https://api.github.com/users/USunOfBeach/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/USunOfBeach/subscriptions","organizations_url":"https://api.github.com/users/USunOfBeach/orgs","repos_url":"https://api.github.com/users/USunOfBeach/repos","events_url":"https://api.github.com/users/USunOfBeach/events{/privacy}","received_events_url":"https://api.github.com/users/USunOfBeach/received_events","type":"User","site_admin":false},"repo":{"id":20825841,"name":"GrimDawnZH","full_name":"USunOfBeach/GrimDawnZH","owner":{"login":"USunOfBeach","id":3244065,"avatar_url":"https://avatars.githubusercontent.com/u/3244065?v=3","gravatar_id":"","url":"https://api.github.com/users/USunOfBeach","html_url":"https://github.com/USunOfBeach","followers_url":"https://api.github.com/users/USunOfBeach/followers","following_url":"https://api.github.com/users/USunOfBeach/following{/other_user}","gists_url":"https://api.github.com/users/USunOfBeach/gists{/gist_id}","starred_url":"https://api.github.com/users/USunOfBeach/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/USunOfBeach/subscriptions","organizations_url":"https://api.github.com/users/USunOfBeach/orgs","repos_url":"https://api.github.com/users/USunOfBeach/repos","events_url":"https://api.github.com/users/USunOfBeach/events{/privacy}","received_events_url":"https://api.github.com/users/USunOfBeach/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/USunOfBeach/GrimDawnZH","description":"","fork":true,"url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH","forks_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/forks","keys_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/keys{/key_id}","collaborators_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/teams","hooks_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/hooks","issue_events_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/issues/events{/number}","events_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/events","assignees_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/assignees{/user}","branches_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/branches{/branch}","tags_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/tags","blobs_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/git/refs{/sha}","trees_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/git/trees{/sha}","statuses_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/statuses/{sha}","languages_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/languages","stargazers_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/stargazers","contributors_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/contributors","subscribers_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/subscribers","subscription_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/subscription","commits_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/commits{/sha}","git_commits_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/git/commits{/sha}","comments_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/comments{/number}","issue_comment_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/issues/comments/{number}","contents_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/contents/{+path}","compare_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/compare/{base}...{head}","merges_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/merges","archive_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/downloads","issues_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/issues{/number}","pulls_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/pulls{/number}","milestones_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/milestones{/number}","notifications_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/labels{/name}","releases_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/releases{/id}","created_at":"2014-06-14T05:32:54Z","updated_at":"2014-11-25T02:45:34Z","pushed_at":"2014-12-31T09:47:34Z","git_url":"git://github.com/USunOfBeach/GrimDawnZH.git","ssh_url":"git@github.com:USunOfBeach/GrimDawnZH.git","clone_url":"https://github.com/USunOfBeach/GrimDawnZH.git","svn_url":"https://github.com/USunOfBeach/GrimDawnZH","homepage":null,"size":2947,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":false,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":1,"forks":0,"open_issues":1,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/pulls/47"},"html":{"href":"https://github.com/USunOfBeach/GrimDawnZH/pull/47"},"issue":{"href":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/issues/47"},"comments":{"href":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/issues/47/comments"},"review_comments":{"href":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/pulls/47/comments"},"review_comment":{"href":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/pulls/47/commits"},"statuses":{"href":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/statuses/e723da36c4de572768afa46b834e18cbe1d551c2"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":3,"additions":102,"deletions":100,"changed_files":4}},"public":true,"created_at":"2015-01-01T15:00:21Z"}
,{"id":"2489651254","type":"WatchEvent","actor":{"id":1757814,"login":"Soufien","gravatar_id":"","url":"https://api.github.com/users/Soufien","avatar_url":"https://avatars.githubusercontent.com/u/1757814?"},"repo":{"id":26689598,"name":"prakhar1989/awesome-courses","url":"https://api.github.com/repos/prakhar1989/awesome-courses"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:00:21Z"}
,{"id":"2489651258","type":"PushEvent","actor":{"id":4582835,"login":"hamini","gravatar_id":"","url":"https://api.github.com/users/hamini","avatar_url":"https://avatars.githubusercontent.com/u/4582835?"},"repo":{"id":28688513,"name":"hamini/sqlalchem","url":"https://api.github.com/repos/hamini/sqlalchem"},"payload":{"push_id":536864079,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"58527233d610608cd6ac9492f35cbdae0508833d","before":"5810b7f953456be61f4bf371b6fd786cd3f61263","commits":[{"sha":"58527233d610608cd6ac9492f35cbdae0508833d","author":{"email":"f44e77edbd869fff0a564f864944cde5b10d166e@gmail.com","name":"hamini"},"message":"Create README.md","distinct":true,"url":"https://api.github.com/repos/hamini/sqlalchem/commits/58527233d610608cd6ac9492f35cbdae0508833d"}]},"public":true,"created_at":"2015-01-01T15:00:21Z"}
,{"id":"2489651261","type":"PushEvent","actor":{"id":24870,"login":"okomok","gravatar_id":"","url":"https://api.github.com/users/okomok","avatar_url":"https://avatars.githubusercontent.com/u/24870?"},"repo":{"id":28598724,"name":"okomok/vim-scala","url":"https://api.github.com/repos/okomok/vim-scala"},"payload":{"push_id":536864080,"size":1,"distinct_size":1,"ref":"refs/heads/private-hack","head":"1dfc3a4088479e791d44a70c4cc9969c1287cf63","before":"de7fdc70760109107b91b07e21dcf8c70f97cbe4","commits":[{"sha":"1dfc3a4088479e791d44a70c4cc9969c1287cf63","author":{"email":"a8067a912d62a6b12fcb80ebbb1809692b1267b6@gmail.com","name":"okomok"},"message":"skip needed","distinct":true,"url":"https://api.github.com/repos/okomok/vim-scala/commits/1dfc3a4088479e791d44a70c4cc9969c1287cf63"}]},"public":true,"created_at":"2015-01-01T15:00:21Z"}
,{"id":"2489651263","type":"PushEvent","actor":{"id":3599510,"login":"xoyip","gravatar_id":"","url":"https://api.github.com/users/xoyip","avatar_url":"https://avatars.githubusercontent.com/u/3599510?"},"repo":{"id":28589009,"name":"xoyip/Brewfile","url":"https://api.github.com/repos/xoyip/Brewfile"},"payload":{"push_id":536864081,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"eeb36c34cb7cb08a0c264dc0b0c6bbdfe366bd00","before":"2d01c1fa32a4613d00bdae8bce1aa45df8fad261","commits":[{"sha":"eeb36c34cb7cb08a0c264dc0b0c6bbdfe366bd00","author":{"email":"4ce662cfe195bf9e5b799610b638accde23afe50","name":"SET_ME_LOCALLY"},"message":"\"Update the package list\"","distinct":true,"url":"https://api.github.com/repos/xoyip/Brewfile/commits/eeb36c34cb7cb08a0c264dc0b0c6bbdfe366bd00"}]},"public":true,"created_at":"2015-01-01T15:00:21Z"}
,{"id":"2489651267","type":"DeleteEvent","actor":{"id":5174751,"login":"alviteri","gravatar_id":"","url":"https://api.github.com/users/alviteri","avatar_url":"https://avatars.githubusercontent.com/u/5174751?"},"repo":{"id":26325354,"name":"crdroidandroid/android_packages_apps_Settings","url":"https://api.github.com/repos/crdroidandroid/android_packages_apps_Settings"},"payload":{"ref":"features","ref_type":"branch","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:00:23Z","org":{"id":9610671,"login":"crdroidandroid","gravatar_id":"","url":"https://api.github.com/orgs/crdroidandroid","avatar_url":"https://avatars.githubusercontent.com/u/9610671?"}}
,{"id":"2489651268","type":"PushEvent","actor":{"id":1179960,"login":"yiyizym","gravatar_id":"","url":"https://api.github.com/users/yiyizym","avatar_url":"https://avatars.githubusercontent.com/u/1179960?"},"repo":{"id":14262141,"name":"yiyizym/blog","url":"https://api.github.com/repos/yiyizym/blog"},"payload":{"push_id":536864085,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"69ae0abf35be76168591f0bff94783e2a0dfc35a","before":"7f0aae1918dbe52deb1f15395a7534a2602dfd0e","commits":[{"sha":"69ae0abf35be76168591f0bff94783e2a0dfc35a","author":{"email":"2df7aa65c6090c0cb32fa52c940b03e1f541375f@gmial.com","name":"yiyizym"},"message":"nc","distinct":true,"url":"https://api.github.com/repos/yiyizym/blog/commits/69ae0abf35be76168591f0bff94783e2a0dfc35a"}]},"public":true,"created_at":"2015-01-01T15:00:23Z"}
,{"id":"2489651271","type":"PushEvent","actor":{"id":8280494,"login":"vascon8","gravatar_id":"","url":"https://api.github.com/users/vascon8","avatar_url":"https://avatars.githubusercontent.com/u/8280494?"},"repo":{"id":28088541,"name":"vascon8/appium-dot-app","url":"https://api.github.com/repos/vascon8/appium-dot-app"},"payload":{"push_id":536864086,"size":6,"distinct_size":4,"ref":"refs/heads/temp","head":"e092c85da3a74ad3812b424b9970bd4147f8af48","before":"66d6d2f168ebb606f48df111b20de4dd59f7af0a","commits":[{"sha":"d69505ee83efa1f4dc0ae415752018c2dee1d749","author":{"email":"5683c97e3d1b7baf9975b7a83fbac64abb95d6fc@yelp.com","name":"Daniel Roth"},"message":"Fix for issue #410, landscape view broken.","distinct":false,"url":"https://api.github.com/repos/vascon8/appium-dot-app/commits/d69505ee83efa1f4dc0ae415752018c2dee1d749"},{"sha":"20ddc32caa1a04f5adabd1760f91dbead989159a","author":{"email":"b611df31359e9ab1bf729fd0aaebf4ab4b2ecf3e@zoosk.com","name":"Dan Cuellar"},"message":"Merge pull request #420 from dwroth/master\n\nFix for issue #410, landscape view broken.","distinct":false,"url":"https://api.github.com/repos/vascon8/appium-dot-app/commits/20ddc32caa1a04f5adabd1760f91dbead989159a"},{"sha":"dc08c3f158957543050014f09015e2be9cd3436b","author":{"email":"8a8a51f4540c265c1fd290b1ff4461347cd8e84e@DanCMacBookAir-7.local","name":"Dan Cuellar"},"message":"1.3.4","distinct":true,"url":"https://api.github.com/repos/vascon8/appium-dot-app/commits/dc08c3f158957543050014f09015e2be9cd3436b"},{"sha":"cf6101792717d6e11c45141034e70571a914cd9a","author":{"email":"b611df31359e9ab1bf729fd0aaebf4ab4b2ecf3e@zoosk.com","name":"Dan Cuellar"},"message":"Merge pull request #422 from penguinho/master\n\n1.3.4","distinct":true,"url":"https://api.github.com/repos/vascon8/appium-dot-app/commits/cf6101792717d6e11c45141034e70571a914cd9a"},{"sha":"225c4bb601bc60c1a5ed701a9429c1e154a1a2d5","author":{"email":"df16fbeef62b317e0d07216dcb054abbcfd17bd7@qq.com","name":"SnowLiu"},"message":"update subproject\n\nsubproject commit","distinct":true,"url":"https://api.github.com/repos/vascon8/appium-dot-app/commits/225c4bb601bc60c1a5ed701a9429c1e154a1a2d5"},{"sha":"e092c85da3a74ad3812b424b9970bd4147f8af48","author":{"email":"df16fbeef62b317e0d07216dcb054abbcfd17bd7@qq.com","name":"SnowLiu"},"message":"merge from appium\n\nmerge from appium","distinct":true,"url":"https://api.github.com/repos/vascon8/appium-dot-app/commits/e092c85da3a74ad3812b424b9970bd4147f8af48"}]},"public":true,"created_at":"2015-01-01T15:00:23Z"}
,{"id":"2489651272","type":"CreateEvent","actor":{"id":803897,"login":"blang","gravatar_id":"","url":"https://api.github.com/users/blang","avatar_url":"https://avatars.githubusercontent.com/u/803897?"},"repo":{"id":28688598,"name":"blang/btrfs-initrd","url":"https://api.github.com/repos/blang/btrfs-initrd"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"Initrd creation to support boot from btrfs subvolume","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:00:23Z"}
,{"id":"2489651274","type":"PushEvent","actor":{"id":280212,"login":"KenanSulayman","gravatar_id":"","url":"https://api.github.com/users/KenanSulayman","avatar_url":"https://avatars.githubusercontent.com/u/280212?"},"repo":{"id":21481110,"name":"KenanSulayman/heartbeat","url":"https://api.github.com/repos/KenanSulayman/heartbeat"},"payload":{"push_id":536864087,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"44d16923964b1c1a669d2ff05abb55fb4db27040","before":"13f5bfae0f2021196aba42ad0ee7e30d3dfb5583","commits":[{"sha":"44d16923964b1c1a669d2ff05abb55fb4db27040","author":{"email":"9176253dfc0bc82671a5e984646605f93319147a@sly.mn","name":"Kenan Sulayman"},"message":"1420124421604\n\nB/5/xAs2un4mjjaODVeJcRfrj+30hEnkvA66DULIR8M=","distinct":true,"url":"https://api.github.com/repos/KenanSulayman/heartbeat/commits/44d16923964b1c1a669d2ff05abb55fb4db27040"}]},"public":true,"created_at":"2015-01-01T15:00:23Z"}
,{"id":"2489651276","type":"PushEvent","actor":{"id":375965,"login":"silverpower","gravatar_id":"","url":"https://api.github.com/users/silverpower","avatar_url":"https://avatars.githubusercontent.com/u/375965?"},"repo":{"id":27519296,"name":"silverpower/comrade_erika","url":"https://api.github.com/repos/silverpower/comrade_erika"},"payload":{"push_id":536864090,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"796db823e89e0fe7f766d6050f5f4a99b89ffdec","before":"37969674c5bfff3e6fcc8ff282a285358e2ba377","commits":[{"sha":"796db823e89e0fe7f766d6050f5f4a99b89ffdec","author":{"email":"44b9c36ece3f0f4299dd2538cf632009acf974d1@gmail.com","name":"Michelle Darcy"},"message":"Really, the crossbow and RPG should be handing out more.","distinct":true,"url":"https://api.github.com/repos/silverpower/comrade_erika/commits/796db823e89e0fe7f766d6050f5f4a99b89ffdec"}]},"public":true,"created_at":"2015-01-01T15:00:23Z"}
,{"id":"2489651278","type":"PushEvent","actor":{"id":1121789,"login":"Saisi","gravatar_id":"","url":"https://api.github.com/users/Saisi","avatar_url":"https://avatars.githubusercontent.com/u/1121789?"},"repo":{"id":25811730,"name":"Saisi/secret-octo-wookie","url":"https://api.github.com/repos/Saisi/secret-octo-wookie"},"payload":{"push_id":536864094,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"bf26858ae41177154a6d0a604139ba52ea1d50d8","before":"0413c63e474386737549f59fa1bc79b04a4a2ae7","commits":[{"sha":"bf26858ae41177154a6d0a604139ba52ea1d50d8","author":{"email":"5070ee02c118bb3c67d539b31e44522403b2c763@users.noreply.github.com","name":"saisi"},"message":"1420124421 hmm","distinct":true,"url":"https://api.github.com/repos/Saisi/secret-octo-wookie/commits/bf26858ae41177154a6d0a604139ba52ea1d50d8"}]},"public":true,"created_at":"2015-01-01T15:00:23Z"}
,{"id":"2489651280","type":"PushEvent","actor":{"id":28127,"login":"hkairi","gravatar_id":"","url":"https://api.github.com/users/hkairi","avatar_url":"https://avatars.githubusercontent.com/u/28127?"},"repo":{"id":28299476,"name":"hkairi/agendakar-widget","url":"https://api.github.com/repos/hkairi/agendakar-widget"},"payload":{"push_id":536864092,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"4883f8c386f863e579adec660e3f038574f4bb9e","before":"1f14e6de2aece96d7a0c7e3831aa2beda420b2e5","commits":[{"sha":"4883f8c386f863e579adec660e3f038574f4bb9e","author":{"email":"b510bb486ebd5c8c5aff3ba43ada62bee3eff38e@gmail.com","name":"Hassane Moustapha"},"message":"jslint","distinct":true,"url":"https://api.github.com/repos/hkairi/agendakar-widget/commits/4883f8c386f863e579adec660e3f038574f4bb9e"}]},"public":true,"created_at":"2015-01-01T15:00:23Z"}
,{"id":"2489651282","type":"ForkEvent","actor":{"id":1757814,"login":"Soufien","gravatar_id":"","url":"https://api.github.com/users/Soufien","avatar_url":"https://avatars.githubusercontent.com/u/1757814?"},"repo":{"id":26689598,"name":"prakhar1989/awesome-courses","url":"https://api.github.com/repos/prakhar1989/awesome-courses"},"payload":{"forkee":{"id":28688604,"name":"awesome-courses","full_name":"Soufien/awesome-courses","owner":{"login":"Soufien","id":1757814,"avatar_url":"https://avatars.githubusercontent.com/u/1757814?v=3","gravatar_id":"","url":"https://api.github.com/users/Soufien","html_url":"https://github.com/Soufien","followers_url":"https://api.github.com/users/Soufien/followers","following_url":"https://api.github.com/users/Soufien/following{/other_user}","gists_url":"https://api.github.com/users/Soufien/gists{/gist_id}","starred_url":"https://api.github.com/users/Soufien/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Soufien/subscriptions","organizations_url":"https://api.github.com/users/Soufien/orgs","repos_url":"https://api.github.com/users/Soufien/repos","events_url":"https://api.github.com/users/Soufien/events{/privacy}","received_events_url":"https://api.github.com/users/Soufien/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/Soufien/awesome-courses","description":"List of awesome university courses for learning Computer Science!","fork":true,"url":"https://api.github.com/repos/Soufien/awesome-courses","forks_url":"https://api.github.com/repos/Soufien/awesome-courses/forks","keys_url":"https://api.github.com/repos/Soufien/awesome-courses/keys{/key_id}","collaborators_url":"https://api.github.com/repos/Soufien/awesome-courses/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/Soufien/awesome-courses/teams","hooks_url":"https://api.github.com/repos/Soufien/awesome-courses/hooks","issue_events_url":"https://api.github.com/repos/Soufien/awesome-courses/issues/events{/number}","events_url":"https://api.github.com/repos/Soufien/awesome-courses/events","assignees_url":"https://api.github.com/repos/Soufien/awesome-courses/assignees{/user}","branches_url":"https://api.github.com/repos/Soufien/awesome-courses/branches{/branch}","tags_url":"https://api.github.com/repos/Soufien/awesome-courses/tags","blobs_url":"https://api.github.com/repos/Soufien/awesome-courses/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/Soufien/awesome-courses/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/Soufien/awesome-courses/git/refs{/sha}","trees_url":"https://api.github.com/repos/Soufien/awesome-courses/git/trees{/sha}","statuses_url":"https://api.github.com/repos/Soufien/awesome-courses/statuses/{sha}","languages_url":"https://api.github.com/repos/Soufien/awesome-courses/languages","stargazers_url":"https://api.github.com/repos/Soufien/awesome-courses/stargazers","contributors_url":"https://api.github.com/repos/Soufien/awesome-courses/contributors","subscribers_url":"https://api.github.com/repos/Soufien/awesome-courses/subscribers","subscription_url":"https://api.github.com/repos/Soufien/awesome-courses/subscription","commits_url":"https://api.github.com/repos/Soufien/awesome-courses/commits{/sha}","git_commits_url":"https://api.github.com/repos/Soufien/awesome-courses/git/commits{/sha}","comments_url":"https://api.github.com/repos/Soufien/awesome-courses/comments{/number}","issue_comment_url":"https://api.github.com/repos/Soufien/awesome-courses/issues/comments/{number}","contents_url":"https://api.github.com/repos/Soufien/awesome-courses/contents/{+path}","compare_url":"https://api.github.com/repos/Soufien/awesome-courses/compare/{base}...{head}","merges_url":"https://api.github.com/repos/Soufien/awesome-courses/merges","archive_url":"https://api.github.com/repos/Soufien/awesome-courses/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/Soufien/awesome-courses/downloads","issues_url":"https://api.github.com/repos/Soufien/awesome-courses/issues{/number}","pulls_url":"https://api.github.com/repos/Soufien/awesome-courses/pulls{/number}","milestones_url":"https://api.github.com/repos/Soufien/awesome-courses/milestones{/number}","notifications_url":"https://api.github.com/repos/Soufien/awesome-courses/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/Soufien/awesome-courses/labels{/name}","releases_url":"https://api.github.com/repos/Soufien/awesome-courses/releases{/id}","created_at":"2015-01-01T15:00:23Z","updated_at":"2015-01-01T15:00:20Z","pushed_at":"2015-01-01T07:26:11Z","git_url":"git://github.com/Soufien/awesome-courses.git","ssh_url":"git@github.com:Soufien/awesome-courses.git","clone_url":"https://github.com/Soufien/awesome-courses.git","svn_url":"https://github.com/Soufien/awesome-courses","homepage":null,"size":1035,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":false,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master","public":true}},"public":true,"created_at":"2015-01-01T15:00:23Z"}
,{"id":"2489651284","type":"WatchEvent","actor":{"id":6894991,"login":"SametSisartenep","gravatar_id":"","url":"https://api.github.com/users/SametSisartenep","avatar_url":"https://avatars.githubusercontent.com/u/6894991?"},"repo":{"id":2206953,"name":"tj/commander.js","url":"https://api.github.com/repos/tj/commander.js"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:00:23Z"}
,{"id":"2489651285","type":"PushEvent","actor":{"id":8345569,"login":"jpespinal","gravatar_id":"","url":"https://api.github.com/users/jpespinal","avatar_url":"https://avatars.githubusercontent.com/u/8345569?"},"repo":{"id":28417357,"name":"jpespinal/portfolio","url":"https://api.github.com/repos/jpespinal/portfolio"},"payload":{"push_id":536864095,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"fd5bacb69d7570aa678176ade7079eee513e54e5","before":"4f17ffb756e855eba6916a27900be4d981b6c138","commits":[{"sha":"fd5bacb69d7570aa678176ade7079eee513e54e5","author":{"email":"2d897f84cebfa32309ad883bf75cbe8ccb3f6374@jpespinal.com","name":"Juan Pablo Espinal"},"message":"Added labels to Contact section icons.","distinct":true,"url":"https://api.github.com/repos/jpespinal/portfolio/commits/fd5bacb69d7570aa678176ade7079eee513e54e5"}]},"public":true,"created_at":"2015-01-01T15:00:24Z"}
,{"id":"2489651287","type":"CreateEvent","actor":{"id":1646422,"login":"brunocarvalhodearaujo","gravatar_id":"","url":"https://api.github.com/users/brunocarvalhodearaujo","avatar_url":"https://avatars.githubusercontent.com/u/1646422?"},"repo":{"id":28688285,"name":"brunocarvalhodearaujo/datastore","url":"https://api.github.com/repos/brunocarvalhodearaujo/datastore"},"payload":{"ref":"0.3","ref_type":"branch","master_branch":"0.1","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:00:24Z"}
,{"id":"2489651289","type":"CreateEvent","actor":{"id":10350512,"login":"LiuSmile","gravatar_id":"","url":"https://api.github.com/users/LiuSmile","avatar_url":"https://avatars.githubusercontent.com/u/10350512?"},"repo":{"id":28688606,"name":"LiuSmile/StuGit","url":"https://api.github.com/repos/LiuSmile/StuGit"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"StuGit","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:00:26Z"}
,{"id":"2489651294","type":"WatchEvent","actor":{"id":1984680,"login":"miaoz","gravatar_id":"","url":"https://api.github.com/users/miaoz","avatar_url":"https://avatars.githubusercontent.com/u/1984680?"},"repo":{"id":27985695,"name":"kevinzhow/Waver","url":"https://api.github.com/repos/kevinzhow/Waver"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:00:26Z"}
,{"id":"2489651296","type":"WatchEvent","actor":{"id":3305006,"login":"EvilOlaf","gravatar_id":"","url":"https://api.github.com/users/EvilOlaf","avatar_url":"https://avatars.githubusercontent.com/u/3305006?"},"repo":{"id":16442741,"name":"SBPrime/AsyncWorldEdit","url":"https://api.github.com/repos/SBPrime/AsyncWorldEdit"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:00:26Z"}
,{"id":"2489651298","type":"PullRequestEvent","actor":{"id":3244065,"login":"USunOfBeach","gravatar_id":"","url":"https://api.github.com/users/USunOfBeach","avatar_url":"https://avatars.githubusercontent.com/u/3244065?"},"repo":{"id":20825841,"name":"USunOfBeach/GrimDawnZH","url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH"},"payload":{"action":"closed","number":47,"pull_request":{"url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/pulls/47","id":26743768,"html_url":"https://github.com/USunOfBeach/GrimDawnZH/pull/47","diff_url":"https://github.com/USunOfBeach/GrimDawnZH/pull/47.diff","patch_url":"https://github.com/USunOfBeach/GrimDawnZH/pull/47.patch","issue_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/issues/47","number":47,"state":"closed","locked":false,"title":"update","user":{"login":"USunOfBeach","id":3244065,"avatar_url":"https://avatars.githubusercontent.com/u/3244065?v=3","gravatar_id":"","url":"https://api.github.com/users/USunOfBeach","html_url":"https://github.com/USunOfBeach","followers_url":"https://api.github.com/users/USunOfBeach/followers","following_url":"https://api.github.com/users/USunOfBeach/following{/other_user}","gists_url":"https://api.github.com/users/USunOfBeach/gists{/gist_id}","starred_url":"https://api.github.com/users/USunOfBeach/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/USunOfBeach/subscriptions","organizations_url":"https://api.github.com/users/USunOfBeach/orgs","repos_url":"https://api.github.com/users/USunOfBeach/repos","events_url":"https://api.github.com/users/USunOfBeach/events{/privacy}","received_events_url":"https://api.github.com/users/USunOfBeach/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:00:20Z","updated_at":"2015-01-01T15:00:25Z","closed_at":"2015-01-01T15:00:25Z","merged_at":"2015-01-01T15:00:25Z","merge_commit_sha":"d2818ac2cf36415357edad9129a075d345c90799","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/pulls/47/commits","review_comments_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/pulls/47/comments","review_comment_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/pulls/comments/{number}","comments_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/issues/47/comments","statuses_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/statuses/e723da36c4de572768afa46b834e18cbe1d551c2","head":{"label":"solael:master","ref":"master","sha":"e723da36c4de572768afa46b834e18cbe1d551c2","user":{"login":"solael","id":5739702,"avatar_url":"https://avatars.githubusercontent.com/u/5739702?v=3","gravatar_id":"","url":"https://api.github.com/users/solael","html_url":"https://github.com/solael","followers_url":"https://api.github.com/users/solael/followers","following_url":"https://api.github.com/users/solael/following{/other_user}","gists_url":"https://api.github.com/users/solael/gists{/gist_id}","starred_url":"https://api.github.com/users/solael/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/solael/subscriptions","organizations_url":"https://api.github.com/users/solael/orgs","repos_url":"https://api.github.com/users/solael/repos","events_url":"https://api.github.com/users/solael/events{/privacy}","received_events_url":"https://api.github.com/users/solael/received_events","type":"User","site_admin":false},"repo":{"id":20801623,"name":"GrimDawnZH","full_name":"solael/GrimDawnZH","owner":{"login":"solael","id":5739702,"avatar_url":"https://avatars.githubusercontent.com/u/5739702?v=3","gravatar_id":"","url":"https://api.github.com/users/solael","html_url":"https://github.com/solael","followers_url":"https://api.github.com/users/solael/followers","following_url":"https://api.github.com/users/solael/following{/other_user}","gists_url":"https://api.github.com/users/solael/gists{/gist_id}","starred_url":"https://api.github.com/users/solael/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/solael/subscriptions","organizations_url":"https://api.github.com/users/solael/orgs","repos_url":"https://api.github.com/users/solael/repos","events_url":"https://api.github.com/users/solael/events{/privacy}","received_events_url":"https://api.github.com/users/solael/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/solael/GrimDawnZH","description":"","fork":false,"url":"https://api.github.com/repos/solael/GrimDawnZH","forks_url":"https://api.github.com/repos/solael/GrimDawnZH/forks","keys_url":"https://api.github.com/repos/solael/GrimDawnZH/keys{/key_id}","collaborators_url":"https://api.github.com/repos/solael/GrimDawnZH/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/solael/GrimDawnZH/teams","hooks_url":"https://api.github.com/repos/solael/GrimDawnZH/hooks","issue_events_url":"https://api.github.com/repos/solael/GrimDawnZH/issues/events{/number}","events_url":"https://api.github.com/repos/solael/GrimDawnZH/events","assignees_url":"https://api.github.com/repos/solael/GrimDawnZH/assignees{/user}","branches_url":"https://api.github.com/repos/solael/GrimDawnZH/branches{/branch}","tags_url":"https://api.github.com/repos/solael/GrimDawnZH/tags","blobs_url":"https://api.github.com/repos/solael/GrimDawnZH/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/solael/GrimDawnZH/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/solael/GrimDawnZH/git/refs{/sha}","trees_url":"https://api.github.com/repos/solael/GrimDawnZH/git/trees{/sha}","statuses_url":"https://api.github.com/repos/solael/GrimDawnZH/statuses/{sha}","languages_url":"https://api.github.com/repos/solael/GrimDawnZH/languages","stargazers_url":"https://api.github.com/repos/solael/GrimDawnZH/stargazers","contributors_url":"https://api.github.com/repos/solael/GrimDawnZH/contributors","subscribers_url":"https://api.github.com/repos/solael/GrimDawnZH/subscribers","subscription_url":"https://api.github.com/repos/solael/GrimDawnZH/subscription","commits_url":"https://api.github.com/repos/solael/GrimDawnZH/commits{/sha}","git_commits_url":"https://api.github.com/repos/solael/GrimDawnZH/git/commits{/sha}","comments_url":"https://api.github.com/repos/solael/GrimDawnZH/comments{/number}","issue_comment_url":"https://api.github.com/repos/solael/GrimDawnZH/issues/comments/{number}","contents_url":"https://api.github.com/repos/solael/GrimDawnZH/contents/{+path}","compare_url":"https://api.github.com/repos/solael/GrimDawnZH/compare/{base}...{head}","merges_url":"https://api.github.com/repos/solael/GrimDawnZH/merges","archive_url":"https://api.github.com/repos/solael/GrimDawnZH/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/solael/GrimDawnZH/downloads","issues_url":"https://api.github.com/repos/solael/GrimDawnZH/issues{/number}","pulls_url":"https://api.github.com/repos/solael/GrimDawnZH/pulls{/number}","milestones_url":"https://api.github.com/repos/solael/GrimDawnZH/milestones{/number}","notifications_url":"https://api.github.com/repos/solael/GrimDawnZH/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/solael/GrimDawnZH/labels{/name}","releases_url":"https://api.github.com/repos/solael/GrimDawnZH/releases{/id}","created_at":"2014-06-13T11:07:41Z","updated_at":"2014-10-28T17:53:11Z","pushed_at":"2015-01-01T07:24:37Z","git_url":"git://github.com/solael/GrimDawnZH.git","ssh_url":"git@github.com:solael/GrimDawnZH.git","clone_url":"https://github.com/solael/GrimDawnZH.git","svn_url":"https://github.com/solael/GrimDawnZH","homepage":null,"size":3500,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":7,"mirror_url":null,"open_issues_count":0,"forks":7,"open_issues":0,"watchers":0,"default_branch":"master"}},"base":{"label":"USunOfBeach:master","ref":"master","sha":"fb8eb3c24284a05c0300921584f654629dd42b1d","user":{"login":"USunOfBeach","id":3244065,"avatar_url":"https://avatars.githubusercontent.com/u/3244065?v=3","gravatar_id":"","url":"https://api.github.com/users/USunOfBeach","html_url":"https://github.com/USunOfBeach","followers_url":"https://api.github.com/users/USunOfBeach/followers","following_url":"https://api.github.com/users/USunOfBeach/following{/other_user}","gists_url":"https://api.github.com/users/USunOfBeach/gists{/gist_id}","starred_url":"https://api.github.com/users/USunOfBeach/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/USunOfBeach/subscriptions","organizations_url":"https://api.github.com/users/USunOfBeach/orgs","repos_url":"https://api.github.com/users/USunOfBeach/repos","events_url":"https://api.github.com/users/USunOfBeach/events{/privacy}","received_events_url":"https://api.github.com/users/USunOfBeach/received_events","type":"User","site_admin":false},"repo":{"id":20825841,"name":"GrimDawnZH","full_name":"USunOfBeach/GrimDawnZH","owner":{"login":"USunOfBeach","id":3244065,"avatar_url":"https://avatars.githubusercontent.com/u/3244065?v=3","gravatar_id":"","url":"https://api.github.com/users/USunOfBeach","html_url":"https://github.com/USunOfBeach","followers_url":"https://api.github.com/users/USunOfBeach/followers","following_url":"https://api.github.com/users/USunOfBeach/following{/other_user}","gists_url":"https://api.github.com/users/USunOfBeach/gists{/gist_id}","starred_url":"https://api.github.com/users/USunOfBeach/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/USunOfBeach/subscriptions","organizations_url":"https://api.github.com/users/USunOfBeach/orgs","repos_url":"https://api.github.com/users/USunOfBeach/repos","events_url":"https://api.github.com/users/USunOfBeach/events{/privacy}","received_events_url":"https://api.github.com/users/USunOfBeach/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/USunOfBeach/GrimDawnZH","description":"","fork":true,"url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH","forks_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/forks","keys_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/keys{/key_id}","collaborators_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/teams","hooks_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/hooks","issue_events_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/issues/events{/number}","events_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/events","assignees_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/assignees{/user}","branches_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/branches{/branch}","tags_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/tags","blobs_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/git/refs{/sha}","trees_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/git/trees{/sha}","statuses_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/statuses/{sha}","languages_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/languages","stargazers_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/stargazers","contributors_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/contributors","subscribers_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/subscribers","subscription_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/subscription","commits_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/commits{/sha}","git_commits_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/git/commits{/sha}","comments_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/comments{/number}","issue_comment_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/issues/comments/{number}","contents_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/contents/{+path}","compare_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/compare/{base}...{head}","merges_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/merges","archive_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/downloads","issues_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/issues{/number}","pulls_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/pulls{/number}","milestones_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/milestones{/number}","notifications_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/labels{/name}","releases_url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/releases{/id}","created_at":"2014-06-14T05:32:54Z","updated_at":"2014-11-25T02:45:34Z","pushed_at":"2015-01-01T15:00:26Z","git_url":"git://github.com/USunOfBeach/GrimDawnZH.git","ssh_url":"git@github.com:USunOfBeach/GrimDawnZH.git","clone_url":"https://github.com/USunOfBeach/GrimDawnZH.git","svn_url":"https://github.com/USunOfBeach/GrimDawnZH","homepage":null,"size":2947,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":false,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/pulls/47"},"html":{"href":"https://github.com/USunOfBeach/GrimDawnZH/pull/47"},"issue":{"href":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/issues/47"},"comments":{"href":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/issues/47/comments"},"review_comments":{"href":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/pulls/47/comments"},"review_comment":{"href":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/pulls/47/commits"},"statuses":{"href":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/statuses/e723da36c4de572768afa46b834e18cbe1d551c2"}},"merged":true,"mergeable":null,"mergeable_state":"unknown","merged_by":{"login":"USunOfBeach","id":3244065,"avatar_url":"https://avatars.githubusercontent.com/u/3244065?v=3","gravatar_id":"","url":"https://api.github.com/users/USunOfBeach","html_url":"https://github.com/USunOfBeach","followers_url":"https://api.github.com/users/USunOfBeach/followers","following_url":"https://api.github.com/users/USunOfBeach/following{/other_user}","gists_url":"https://api.github.com/users/USunOfBeach/gists{/gist_id}","starred_url":"https://api.github.com/users/USunOfBeach/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/USunOfBeach/subscriptions","organizations_url":"https://api.github.com/users/USunOfBeach/orgs","repos_url":"https://api.github.com/users/USunOfBeach/repos","events_url":"https://api.github.com/users/USunOfBeach/events{/privacy}","received_events_url":"https://api.github.com/users/USunOfBeach/received_events","type":"User","site_admin":false},"comments":0,"review_comments":0,"commits":3,"additions":102,"deletions":100,"changed_files":4}},"public":true,"created_at":"2015-01-01T15:00:26Z"}
,{"id":"2489651301","type":"PushEvent","actor":{"id":3233271,"login":"bigsquirrel","gravatar_id":"","url":"https://api.github.com/users/bigsquirrel","avatar_url":"https://avatars.githubusercontent.com/u/3233271?"},"repo":{"id":28680217,"name":"bigsquirrel/bigsquirrel.github.io","url":"https://api.github.com/repos/bigsquirrel/bigsquirrel.github.io"},"payload":{"push_id":536864097,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"df4335964eb6cfccfc154142c91b06c40164099d","before":"ada240622490660cb4f6159a912ea460c35676e8","commits":[{"sha":"df4335964eb6cfccfc154142c91b06c40164099d","author":{"email":"628bf910fbbd0b68ca95cb1b1f567efb1617a454@gmail.com","name":"ivanchou"},"message":"add google analysis","distinct":true,"url":"https://api.github.com/repos/bigsquirrel/bigsquirrel.github.io/commits/df4335964eb6cfccfc154142c91b06c40164099d"}]},"public":true,"created_at":"2015-01-01T15:00:26Z"}
,{"id":"2489651302","type":"PushEvent","actor":{"id":8265668,"login":"frank-deng","gravatar_id":"","url":"https://api.github.com/users/frank-deng","avatar_url":"https://avatars.githubusercontent.com/u/8265668?"},"repo":{"id":22905085,"name":"frank-deng/fgfs-tools","url":"https://api.github.com/repos/frank-deng/fgfs-tools"},"payload":{"push_id":536864099,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"41ea1332747c3d06af9db0db746c80b9890e7615","before":"524f4af02705aa2a6ff44370a0cfb4ee105ee029","commits":[{"sha":"6c1261bb2df4bf4032ebdc071846dbc278fa3a6f","author":{"email":"07f907d0a05f63ed1e641aa2775520c26d6f16b2@163.com","name":"frank-deng"},"message":"fgtools uses python for quicker response, screenshot function removed","distinct":true,"url":"https://api.github.com/repos/frank-deng/fgfs-tools/commits/6c1261bb2df4bf4032ebdc071846dbc278fa3a6f"},{"sha":"41ea1332747c3d06af9db0db746c80b9890e7615","author":{"email":"07f907d0a05f63ed1e641aa2775520c26d6f16b2@163.com","name":"frank-deng"},"message":"fgtools updated","distinct":true,"url":"https://api.github.com/repos/frank-deng/fgfs-tools/commits/41ea1332747c3d06af9db0db746c80b9890e7615"}]},"public":true,"created_at":"2015-01-01T15:00:26Z"}
,{"id":"2489651304","type":"PushEvent","actor":{"id":3244065,"login":"USunOfBeach","gravatar_id":"","url":"https://api.github.com/users/USunOfBeach","avatar_url":"https://avatars.githubusercontent.com/u/3244065?"},"repo":{"id":20825841,"name":"USunOfBeach/GrimDawnZH","url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH"},"payload":{"push_id":536864102,"size":4,"distinct_size":4,"ref":"refs/heads/master","head":"e8cfd4525ee9e2f1fa5a14768cb56fd0c38a1b7f","before":"fb8eb3c24284a05c0300921584f654629dd42b1d","commits":[{"sha":"bdb11d1059df6d01266fe7ff91833b8869893a26","author":{"email":"3995fecd97602380da639bd2f19a348e1dd3a3cf@ensiie.fr","name":"Yuheng Zhao"},"message":"Merge pull request #31 from USunOfBeach/master\n\nskill","distinct":true,"url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/commits/bdb11d1059df6d01266fe7ff91833b8869893a26"},{"sha":"1e64b28d9fd863234b3cda01ff0058d6143f0d2f","author":{"email":"0466391ef8d59c86a7d8800b2471797778a9a628@gmail.com","name":"solael"},"message":"空行","distinct":true,"url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/commits/1e64b28d9fd863234b3cda01ff0058d6143f0d2f"},{"sha":"e723da36c4de572768afa46b834e18cbe1d551c2","author":{"email":"0466391ef8d59c86a7d8800b2471797778a9a628@gmail.com","name":"solael"},"message":"修正","distinct":true,"url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/commits/e723da36c4de572768afa46b834e18cbe1d551c2"},{"sha":"e8cfd4525ee9e2f1fa5a14768cb56fd0c38a1b7f","author":{"email":"adfe27685b198ae904742e557e3f7375964be338@gmail.com","name":"USunOfBeach"},"message":"Merge pull request #47 from solael/master\n\nupdate","distinct":true,"url":"https://api.github.com/repos/USunOfBeach/GrimDawnZH/commits/e8cfd4525ee9e2f1fa5a14768cb56fd0c38a1b7f"}]},"public":true,"created_at":"2015-01-01T15:00:26Z"}
,{"id":"2489651309","type":"PushEvent","actor":{"id":1866543,"login":"idok","gravatar_id":"","url":"https://api.github.com/users/idok","avatar_url":"https://avatars.githubusercontent.com/u/1866543?"},"repo":{"id":26432432,"name":"wix/react-templates","url":"https://api.github.com/repos/wix/react-templates"},"payload":{"push_id":536864105,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"0166106c06d8a73d849ad825faaac8a0a42464c4","before":"cc7cb8ea44634ed4b539674b016f4c9e88b21342","commits":[{"sha":"0166106c06d8a73d849ad825faaac8a0a42464c4","author":{"email":"e64918f1cbd60416febfa2aa253965ba87b1896f@wix.com","name":"ido"},"message":"add yeoman and hello project","distinct":true,"url":"https://api.github.com/repos/wix/react-templates/commits/0166106c06d8a73d849ad825faaac8a0a42464c4"}]},"public":true,"created_at":"2015-01-01T15:00:27Z","org":{"id":686511,"login":"wix","gravatar_id":"","url":"https://api.github.com/orgs/wix","avatar_url":"https://avatars.githubusercontent.com/u/686511?"}}
,{"id":"2489651310","type":"WatchEvent","actor":{"id":6376156,"login":"shenjiayu","gravatar_id":"","url":"https://api.github.com/users/shenjiayu","avatar_url":"https://avatars.githubusercontent.com/u/6376156?"},"repo":{"id":2325298,"name":"torvalds/linux","url":"https://api.github.com/repos/torvalds/linux"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:00:28Z"}
,{"id":"2489651313","type":"CreateEvent","actor":{"id":10364741,"login":"Adidaz","gravatar_id":"","url":"https://api.github.com/users/Adidaz","avatar_url":"https://avatars.githubusercontent.com/u/10364741?"},"repo":{"id":28688607,"name":"Adidaz/callingCard","url":"https://api.github.com/repos/Adidaz/callingCard"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:00:28Z"}
,{"id":"2489651315","type":"PushEvent","actor":{"id":5477252,"login":"callumW","gravatar_id":"","url":"https://api.github.com/users/callumW","avatar_url":"https://avatars.githubusercontent.com/u/5477252?"},"repo":{"id":28609540,"name":"callumW/map_generator","url":"https://api.github.com/repos/callumW/map_generator"},"payload":{"push_id":536864109,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"eddff3883580a911ebcfeedf4197247c1292e865","before":"583184c9395d5ad61a14b26f9cd1425c55499d08","commits":[{"sha":"eddff3883580a911ebcfeedf4197247c1292e865","author":{"email":"8b421b0a1f73d85e4029c56084bdae8ccf6199f8@outlook.com","name":"callumW"},"message":"new terrain globber","distinct":true,"url":"https://api.github.com/repos/callumW/map_generator/commits/eddff3883580a911ebcfeedf4197247c1292e865"}]},"public":true,"created_at":"2015-01-01T15:00:28Z"}
,{"id":"2489651321","type":"IssueCommentEvent","actor":{"id":62572,"login":"markbirbeck","gravatar_id":"","url":"https://api.github.com/users/markbirbeck","avatar_url":"https://avatars.githubusercontent.com/u/62572?"},"repo":{"id":13315164,"name":"markbirbeck/sublime-text-shell-command","url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/issues/7","labels_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/issues/7/labels{/name}","comments_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/issues/7/comments","events_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/issues/7/events","html_url":"https://github.com/markbirbeck/sublime-text-shell-command/pull/7","id":22832809,"number":7,"title":"Feature/add doller variable","user":{"login":"aflc","id":1144478,"avatar_url":"https://avatars.githubusercontent.com/u/1144478?v=3","gravatar_id":"","url":"https://api.github.com/users/aflc","html_url":"https://github.com/aflc","followers_url":"https://api.github.com/users/aflc/followers","following_url":"https://api.github.com/users/aflc/following{/other_user}","gists_url":"https://api.github.com/users/aflc/gists{/gist_id}","starred_url":"https://api.github.com/users/aflc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/aflc/subscriptions","organizations_url":"https://api.github.com/users/aflc/orgs","repos_url":"https://api.github.com/users/aflc/repos","events_url":"https://api.github.com/users/aflc/events{/privacy}","received_events_url":"https://api.github.com/users/aflc/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2013-11-18T12:59:21Z","updated_at":"2015-01-01T15:00:28Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/pulls/7","html_url":"https://github.com/markbirbeck/sublime-text-shell-command/pull/7","diff_url":"https://github.com/markbirbeck/sublime-text-shell-command/pull/7.diff","patch_url":"https://github.com/markbirbeck/sublime-text-shell-command/pull/7.patch"},"body":"Add new class to handle ${...} based variable which User can input with input panel,\r\nor replaced automatically with pre-defined variable (but now implemented `project_folders` and `project_name`)"},"comment":{"url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/issues/comments/68488500","html_url":"https://github.com/markbirbeck/sublime-text-shell-command/pull/7#issuecomment-68488500","issue_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/issues/7","id":68488500,"user":{"login":"markbirbeck","id":62572,"avatar_url":"https://avatars.githubusercontent.com/u/62572?v=3","gravatar_id":"","url":"https://api.github.com/users/markbirbeck","html_url":"https://github.com/markbirbeck","followers_url":"https://api.github.com/users/markbirbeck/followers","following_url":"https://api.github.com/users/markbirbeck/following{/other_user}","gists_url":"https://api.github.com/users/markbirbeck/gists{/gist_id}","starred_url":"https://api.github.com/users/markbirbeck/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/markbirbeck/subscriptions","organizations_url":"https://api.github.com/users/markbirbeck/orgs","repos_url":"https://api.github.com/users/markbirbeck/repos","events_url":"https://api.github.com/users/markbirbeck/events{/privacy}","received_events_url":"https://api.github.com/users/markbirbeck/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:00:28Z","updated_at":"2015-01-01T15:00:28Z","body":"Hi @aflc.\r\n\r\nSorry this took so long, but I was doing so much nodejs last year that I just didn't get round to updating any of my ST modules!\r\n\r\nAnyway, thanks for this great functionality and it is now incorporated, with a couple of very minor changes:\r\n\r\n* I've added it directly to the main `ShellCommandCommand` class, rather than to a subclass, since this feature should be available in all situations;\r\n* to maintain consistency with other uses of the `${variable:default}` kind of syntax, I've said that the prompt parameter is always the third parameter;\r\n* I've factored your code into its own module to make adding new variables easier.\r\n\r\nI hope this is ok, and thanks again for your work.\r\n\r\nMark"}},"public":true,"created_at":"2015-01-01T15:00:28Z"}
,{"id":"2489651329","type":"CreateEvent","actor":{"id":10086149,"login":"yunqy","gravatar_id":"","url":"https://api.github.com/users/yunqy","avatar_url":"https://avatars.githubusercontent.com/u/10086149?"},"repo":{"id":28024771,"name":"yunqy/ShareDictionary","url":"https://api.github.com/repos/yunqy/ShareDictionary"},"payload":{"ref":"MiaBranch","ref_type":"branch","master_branch":"master","description":"Socail Network and Application","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:00:29Z"}
,{"id":"2489651331","type":"PullRequestEvent","actor":{"id":7580708,"login":"OQO","gravatar_id":"","url":"https://api.github.com/users/OQO","avatar_url":"https://avatars.githubusercontent.com/u/7580708?"},"repo":{"id":19777872,"name":"OQO/websocket-sharp","url":"https://api.github.com/repos/OQO/websocket-sharp"},"payload":{"action":"closed","number":1,"pull_request":{"url":"https://api.github.com/repos/OQO/websocket-sharp/pulls/1","id":26743767,"html_url":"https://github.com/OQO/websocket-sharp/pull/1","diff_url":"https://github.com/OQO/websocket-sharp/pull/1.diff","patch_url":"https://github.com/OQO/websocket-sharp/pull/1.patch","issue_url":"https://api.github.com/repos/OQO/websocket-sharp/issues/1","number":1,"state":"closed","locked":false,"title":"Update from master","user":{"login":"OQO","id":7580708,"avatar_url":"https://avatars.githubusercontent.com/u/7580708?v=3","gravatar_id":"","url":"https://api.github.com/users/OQO","html_url":"https://github.com/OQO","followers_url":"https://api.github.com/users/OQO/followers","following_url":"https://api.github.com/users/OQO/following{/other_user}","gists_url":"https://api.github.com/users/OQO/gists{/gist_id}","starred_url":"https://api.github.com/users/OQO/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/OQO/subscriptions","organizations_url":"https://api.github.com/users/OQO/orgs","repos_url":"https://api.github.com/users/OQO/repos","events_url":"https://api.github.com/users/OQO/events{/privacy}","received_events_url":"https://api.github.com/users/OQO/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:00:12Z","updated_at":"2015-01-01T15:00:29Z","closed_at":"2015-01-01T15:00:29Z","merged_at":"2015-01-01T15:00:29Z","merge_commit_sha":"96c8ca1da04db1dd80fa4c86e034b304ca099749","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/OQO/websocket-sharp/pulls/1/commits","review_comments_url":"https://api.github.com/repos/OQO/websocket-sharp/pulls/1/comments","review_comment_url":"https://api.github.com/repos/OQO/websocket-sharp/pulls/comments/{number}","comments_url":"https://api.github.com/repos/OQO/websocket-sharp/issues/1/comments","statuses_url":"https://api.github.com/repos/OQO/websocket-sharp/statuses/d25abde62826651db331b8995a02fa5b6d1a1847","head":{"label":"sta:master","ref":"master","sha":"d25abde62826651db331b8995a02fa5b6d1a1847","user":{"login":"sta","id":443481,"avatar_url":"https://avatars.githubusercontent.com/u/443481?v=3","gravatar_id":"","url":"https://api.github.com/users/sta","html_url":"https://github.com/sta","followers_url":"https://api.github.com/users/sta/followers","following_url":"https://api.github.com/users/sta/following{/other_user}","gists_url":"https://api.github.com/users/sta/gists{/gist_id}","starred_url":"https://api.github.com/users/sta/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/sta/subscriptions","organizations_url":"https://api.github.com/users/sta/orgs","repos_url":"https://api.github.com/users/sta/repos","events_url":"https://api.github.com/users/sta/events{/privacy}","received_events_url":"https://api.github.com/users/sta/received_events","type":"User","site_admin":false},"repo":{"id":997491,"name":"websocket-sharp","full_name":"sta/websocket-sharp","owner":{"login":"sta","id":443481,"avatar_url":"https://avatars.githubusercontent.com/u/443481?v=3","gravatar_id":"","url":"https://api.github.com/users/sta","html_url":"https://github.com/sta","followers_url":"https://api.github.com/users/sta/followers","following_url":"https://api.github.com/users/sta/following{/other_user}","gists_url":"https://api.github.com/users/sta/gists{/gist_id}","starred_url":"https://api.github.com/users/sta/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/sta/subscriptions","organizations_url":"https://api.github.com/users/sta/orgs","repos_url":"https://api.github.com/users/sta/repos","events_url":"https://api.github.com/users/sta/events{/privacy}","received_events_url":"https://api.github.com/users/sta/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/sta/websocket-sharp","description":"A C# implementation of the WebSocket protocol client and server","fork":false,"url":"https://api.github.com/repos/sta/websocket-sharp","forks_url":"https://api.github.com/repos/sta/websocket-sharp/forks","keys_url":"https://api.github.com/repos/sta/websocket-sharp/keys{/key_id}","collaborators_url":"https://api.github.com/repos/sta/websocket-sharp/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/sta/websocket-sharp/teams","hooks_url":"https://api.github.com/repos/sta/websocket-sharp/hooks","issue_events_url":"https://api.github.com/repos/sta/websocket-sharp/issues/events{/number}","events_url":"https://api.github.com/repos/sta/websocket-sharp/events","assignees_url":"https://api.github.com/repos/sta/websocket-sharp/assignees{/user}","branches_url":"https://api.github.com/repos/sta/websocket-sharp/branches{/branch}","tags_url":"https://api.github.com/repos/sta/websocket-sharp/tags","blobs_url":"https://api.github.com/repos/sta/websocket-sharp/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/sta/websocket-sharp/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/sta/websocket-sharp/git/refs{/sha}","trees_url":"https://api.github.com/repos/sta/websocket-sharp/git/trees{/sha}","statuses_url":"https://api.github.com/repos/sta/websocket-sharp/statuses/{sha}","languages_url":"https://api.github.com/repos/sta/websocket-sharp/languages","stargazers_url":"https://api.github.com/repos/sta/websocket-sharp/stargazers","contributors_url":"https://api.github.com/repos/sta/websocket-sharp/contributors","subscribers_url":"https://api.github.com/repos/sta/websocket-sharp/subscribers","subscription_url":"https://api.github.com/repos/sta/websocket-sharp/subscription","commits_url":"https://api.github.com/repos/sta/websocket-sharp/commits{/sha}","git_commits_url":"https://api.github.com/repos/sta/websocket-sharp/git/commits{/sha}","comments_url":"https://api.github.com/repos/sta/websocket-sharp/comments{/number}","issue_comment_url":"https://api.github.com/repos/sta/websocket-sharp/issues/comments/{number}","contents_url":"https://api.github.com/repos/sta/websocket-sharp/contents/{+path}","compare_url":"https://api.github.com/repos/sta/websocket-sharp/compare/{base}...{head}","merges_url":"https://api.github.com/repos/sta/websocket-sharp/merges","archive_url":"https://api.github.com/repos/sta/websocket-sharp/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/sta/websocket-sharp/downloads","issues_url":"https://api.github.com/repos/sta/websocket-sharp/issues{/number}","pulls_url":"https://api.github.com/repos/sta/websocket-sharp/pulls{/number}","milestones_url":"https://api.github.com/repos/sta/websocket-sharp/milestones{/number}","notifications_url":"https://api.github.com/repos/sta/websocket-sharp/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/sta/websocket-sharp/labels{/name}","releases_url":"https://api.github.com/repos/sta/websocket-sharp/releases{/id}","created_at":"2010-10-18T12:51:34Z","updated_at":"2015-01-01T14:57:39Z","pushed_at":"2014-12-31T02:45:51Z","git_url":"git://github.com/sta/websocket-sharp.git","ssh_url":"git@github.com:sta/websocket-sharp.git","clone_url":"https://github.com/sta/websocket-sharp.git","svn_url":"https://github.com/sta/websocket-sharp","homepage":"http://sta.github.io/websocket-sharp","size":17131,"stargazers_count":284,"watchers_count":284,"language":"C#","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":true,"forks_count":110,"mirror_url":null,"open_issues_count":63,"forks":110,"open_issues":63,"watchers":284,"default_branch":"master"}},"base":{"label":"OQO:master","ref":"master","sha":"87d48ed9ad4c88d5c7f03d8fc9546a15b42fc9c4","user":{"login":"OQO","id":7580708,"avatar_url":"https://avatars.githubusercontent.com/u/7580708?v=3","gravatar_id":"","url":"https://api.github.com/users/OQO","html_url":"https://github.com/OQO","followers_url":"https://api.github.com/users/OQO/followers","following_url":"https://api.github.com/users/OQO/following{/other_user}","gists_url":"https://api.github.com/users/OQO/gists{/gist_id}","starred_url":"https://api.github.com/users/OQO/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/OQO/subscriptions","organizations_url":"https://api.github.com/users/OQO/orgs","repos_url":"https://api.github.com/users/OQO/repos","events_url":"https://api.github.com/users/OQO/events{/privacy}","received_events_url":"https://api.github.com/users/OQO/received_events","type":"User","site_admin":false},"repo":{"id":19777872,"name":"websocket-sharp","full_name":"OQO/websocket-sharp","owner":{"login":"OQO","id":7580708,"avatar_url":"https://avatars.githubusercontent.com/u/7580708?v=3","gravatar_id":"","url":"https://api.github.com/users/OQO","html_url":"https://github.com/OQO","followers_url":"https://api.github.com/users/OQO/followers","following_url":"https://api.github.com/users/OQO/following{/other_user}","gists_url":"https://api.github.com/users/OQO/gists{/gist_id}","starred_url":"https://api.github.com/users/OQO/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/OQO/subscriptions","organizations_url":"https://api.github.com/users/OQO/orgs","repos_url":"https://api.github.com/users/OQO/repos","events_url":"https://api.github.com/users/OQO/events{/privacy}","received_events_url":"https://api.github.com/users/OQO/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/OQO/websocket-sharp","description":"A C# implementation of the WebSocket protocol client and server","fork":true,"url":"https://api.github.com/repos/OQO/websocket-sharp","forks_url":"https://api.github.com/repos/OQO/websocket-sharp/forks","keys_url":"https://api.github.com/repos/OQO/websocket-sharp/keys{/key_id}","collaborators_url":"https://api.github.com/repos/OQO/websocket-sharp/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/OQO/websocket-sharp/teams","hooks_url":"https://api.github.com/repos/OQO/websocket-sharp/hooks","issue_events_url":"https://api.github.com/repos/OQO/websocket-sharp/issues/events{/number}","events_url":"https://api.github.com/repos/OQO/websocket-sharp/events","assignees_url":"https://api.github.com/repos/OQO/websocket-sharp/assignees{/user}","branches_url":"https://api.github.com/repos/OQO/websocket-sharp/branches{/branch}","tags_url":"https://api.github.com/repos/OQO/websocket-sharp/tags","blobs_url":"https://api.github.com/repos/OQO/websocket-sharp/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/OQO/websocket-sharp/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/OQO/websocket-sharp/git/refs{/sha}","trees_url":"https://api.github.com/repos/OQO/websocket-sharp/git/trees{/sha}","statuses_url":"https://api.github.com/repos/OQO/websocket-sharp/statuses/{sha}","languages_url":"https://api.github.com/repos/OQO/websocket-sharp/languages","stargazers_url":"https://api.github.com/repos/OQO/websocket-sharp/stargazers","contributors_url":"https://api.github.com/repos/OQO/websocket-sharp/contributors","subscribers_url":"https://api.github.com/repos/OQO/websocket-sharp/subscribers","subscription_url":"https://api.github.com/repos/OQO/websocket-sharp/subscription","commits_url":"https://api.github.com/repos/OQO/websocket-sharp/commits{/sha}","git_commits_url":"https://api.github.com/repos/OQO/websocket-sharp/git/commits{/sha}","comments_url":"https://api.github.com/repos/OQO/websocket-sharp/comments{/number}","issue_comment_url":"https://api.github.com/repos/OQO/websocket-sharp/issues/comments/{number}","contents_url":"https://api.github.com/repos/OQO/websocket-sharp/contents/{+path}","compare_url":"https://api.github.com/repos/OQO/websocket-sharp/compare/{base}...{head}","merges_url":"https://api.github.com/repos/OQO/websocket-sharp/merges","archive_url":"https://api.github.com/repos/OQO/websocket-sharp/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/OQO/websocket-sharp/downloads","issues_url":"https://api.github.com/repos/OQO/websocket-sharp/issues{/number}","pulls_url":"https://api.github.com/repos/OQO/websocket-sharp/pulls{/number}","milestones_url":"https://api.github.com/repos/OQO/websocket-sharp/milestones{/number}","notifications_url":"https://api.github.com/repos/OQO/websocket-sharp/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/OQO/websocket-sharp/labels{/name}","releases_url":"https://api.github.com/repos/OQO/websocket-sharp/releases{/id}","created_at":"2014-05-14T12:06:30Z","updated_at":"2015-01-01T14:57:34Z","pushed_at":"2015-01-01T15:00:29Z","git_url":"git://github.com/OQO/websocket-sharp.git","ssh_url":"git@github.com:OQO/websocket-sharp.git","clone_url":"https://github.com/OQO/websocket-sharp.git","svn_url":"https://github.com/OQO/websocket-sharp","homepage":"http://sta.github.io/websocket-sharp","size":12939,"stargazers_count":0,"watchers_count":0,"language":"C#","has_issues":false,"has_downloads":true,"has_wiki":true,"has_pages":true,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/OQO/websocket-sharp/pulls/1"},"html":{"href":"https://github.com/OQO/websocket-sharp/pull/1"},"issue":{"href":"https://api.github.com/repos/OQO/websocket-sharp/issues/1"},"comments":{"href":"https://api.github.com/repos/OQO/websocket-sharp/issues/1/comments"},"review_comments":{"href":"https://api.github.com/repos/OQO/websocket-sharp/pulls/1/comments"},"review_comment":{"href":"https://api.github.com/repos/OQO/websocket-sharp/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/OQO/websocket-sharp/pulls/1/commits"},"statuses":{"href":"https://api.github.com/repos/OQO/websocket-sharp/statuses/d25abde62826651db331b8995a02fa5b6d1a1847"}},"merged":true,"mergeable":null,"mergeable_state":"unknown","merged_by":{"login":"OQO","id":7580708,"avatar_url":"https://avatars.githubusercontent.com/u/7580708?v=3","gravatar_id":"","url":"https://api.github.com/users/OQO","html_url":"https://github.com/OQO","followers_url":"https://api.github.com/users/OQO/followers","following_url":"https://api.github.com/users/OQO/following{/other_user}","gists_url":"https://api.github.com/users/OQO/gists{/gist_id}","starred_url":"https://api.github.com/users/OQO/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/OQO/subscriptions","organizations_url":"https://api.github.com/users/OQO/orgs","repos_url":"https://api.github.com/users/OQO/repos","events_url":"https://api.github.com/users/OQO/events{/privacy}","received_events_url":"https://api.github.com/users/OQO/received_events","type":"User","site_admin":false},"comments":0,"review_comments":0,"commits":269,"additions":8814,"deletions":7216,"changed_files":88}},"public":true,"created_at":"2015-01-01T15:00:29Z"}
,{"id":"2489651332","type":"PushEvent","actor":{"id":7184355,"login":"akiokanashiki","gravatar_id":"","url":"https://api.github.com/users/akiokanashiki","avatar_url":"https://avatars.githubusercontent.com/u/7184355?"},"repo":{"id":28599608,"name":"akiokanashiki/tdwf","url":"https://api.github.com/repos/akiokanashiki/tdwf"},"payload":{"push_id":536864111,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"31c890ccb1010cc7980ce0c8147dc47c7d8e9c81","before":"2d18dfbfa81019f1ce9f0575581e6432ebe1b9aa","commits":[{"sha":"31c890ccb1010cc7980ce0c8147dc47c7d8e9c81","author":{"email":"c2937ce015cc7a35e4b793efe3547c0e88e001c9@mail.com","name":"akio@mail.com"},"message":"update date time logics","distinct":true,"url":"https://api.github.com/repos/akiokanashiki/tdwf/commits/31c890ccb1010cc7980ce0c8147dc47c7d8e9c81"}]},"public":true,"created_at":"2015-01-01T15:00:29Z"}
,{"id":"2489651336","type":"PushEvent","actor":{"id":3904348,"login":"floscher","gravatar_id":"","url":"https://api.github.com/users/floscher","avatar_url":"https://avatars.githubusercontent.com/u/3904348?"},"repo":{"id":28688327,"name":"floscher/linguist","url":"https://api.github.com/repos/floscher/linguist"},"payload":{"push_id":536864115,"size":1,"distinct_size":1,"ref":"refs/heads/patch-1","head":"1f383a78efb74b7f64d100482659c78c08f765cd","before":"6dd5b14e30a6206699158d6839650eafdeb6e87e","commits":[{"sha":"1f383a78efb74b7f64d100482659c78c08f765cd","author":{"email":"73262ad0334ab37227b2f7a0205f51db1e606681@schaeferban.de","name":"Florian Schäfer"},"message":"Add tm_scope: none","distinct":true,"url":"https://api.github.com/repos/floscher/linguist/commits/1f383a78efb74b7f64d100482659c78c08f765cd"}]},"public":true,"created_at":"2015-01-01T15:00:29Z"}
,{"id":"2489651338","type":"PushEvent","actor":{"id":2447222,"login":"GaryCarneiro","gravatar_id":"","url":"https://api.github.com/users/GaryCarneiro","avatar_url":"https://avatars.githubusercontent.com/u/2447222?"},"repo":{"id":13476673,"name":"GaryCarneiro/dotfiles","url":"https://api.github.com/repos/GaryCarneiro/dotfiles"},"payload":{"push_id":536864117,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"d7287457717a2e66411ac153315956fcf26f600d","before":"0c96298cf3ae1066d3b08621caf4c06dace7754e","commits":[{"sha":"d7287457717a2e66411ac153315956fcf26f600d","author":{"email":"134e06816552b8c24c328e457b24000a062639ee@gmail.com","name":"Garfield Edgar Carneiro"},"message":"New Right Status Bar; Includes load average","distinct":true,"url":"https://api.github.com/repos/GaryCarneiro/dotfiles/commits/d7287457717a2e66411ac153315956fcf26f600d"}]},"public":true,"created_at":"2015-01-01T15:00:29Z"}
,{"id":"2489651343","type":"PushEvent","actor":{"id":7580708,"login":"OQO","gravatar_id":"","url":"https://api.github.com/users/OQO","avatar_url":"https://avatars.githubusercontent.com/u/7580708?"},"repo":{"id":19777872,"name":"OQO/websocket-sharp","url":"https://api.github.com/repos/OQO/websocket-sharp"},"payload":{"push_id":536864118,"size":270,"distinct_size":270,"ref":"refs/heads/master","head":"28e0b50375802ddfdd34aa4ccac8043723bd6f7f","before":"87d48ed9ad4c88d5c7f03d8fc9546a15b42fc9c4","commits":[{"sha":"4611ed7a8df3f02ee61f2b6e76acf2beb56220fe","author":{"email":"e9eb5fb12fca54ee1fb793474c43ae6232e23026@gmail.com","name":"sta"},"message":"Fix a few for WsStream.cs","distinct":true,"url":"https://api.github.com/repos/OQO/websocket-sharp/commits/4611ed7a8df3f02ee61f2b6e76acf2beb56220fe"},{"sha":"fdf413545e444f20e26a55117d542b2f374d88ef","author":{"email":"e9eb5fb12fca54ee1fb793474c43ae6232e23026@gmail.com","name":"sta"},"message":"Renamed WsStream.cs to WebSocketStream.cs","distinct":true,"url":"https://api.github.com/repos/OQO/websocket-sharp/commits/fdf413545e444f20e26a55117d542b2f374d88ef"},{"sha":"e20c3df55130fcf6945975df3920f71d7ab8e682","author":{"email":"e9eb5fb12fca54ee1fb793474c43ae6232e23026@gmail.com","name":"sta"},"message":"Added GetWebSocketStream method to HttpConnection class","distinct":true,"url":"https://api.github.com/repos/OQO/websocket-sharp/commits/e20c3df55130fcf6945975df3920f71d7ab8e682"},{"sha":"cae324a9367346e02fd7a6296828f99b62d83f51","author":{"email":"e9eb5fb12fca54ee1fb793474c43ae6232e23026@gmail.com","name":"sta"},"message":"Fix for issue #46","distinct":true,"url":"https://api.github.com/repos/OQO/websocket-sharp/commits/cae324a9367346e02fd7a6296828f99b62d83f51"},{"sha":"be85033f8a476daf1e13e56ba253c27f2e63646f","author":{"email":"e9eb5fb12fca54ee1fb793474c43ae6232e23026@gmail.com","name":"sta"},"message":"Fix for issue #45","distinct":true,"url":"https://api.github.com/repos/OQO/websocket-sharp/commits/be85033f8a476daf1e13e56ba253c27f2e63646f"},{"sha":"696cfd686dbf0b03055348bf105388517d76081b","author":{"email":"e9eb5fb12fca54ee1fb793474c43ae6232e23026@gmail.com","name":"sta"},"message":"Refactored ChunkedInputStream.cs","distinct":true,"url":"https://api.github.com/repos/OQO/websocket-sharp/commits/696cfd686dbf0b03055348bf105388517d76081b"},{"sha":"2a1f706051c97cb8bf1988e629bca590b9b13500","author":{"email":"e9eb5fb12fca54ee1fb793474c43ae6232e23026@gmail.com","name":"sta"},"message":"Refactored ChunkStream.cs","distinct":true,"url":"https://api.github.com/repos/OQO/websocket-sharp/commits/2a1f706051c97cb8bf1988e629bca590b9b13500"},{"sha":"4be6ef84947d4bc98978fc339ca8e8109bd2dbcb","author":{"email":"e9eb5fb12fca54ee1fb793474c43ae6232e23026@gmail.com","name":"sta"},"message":"Renamed ChunkedInputStream.cs to ChunkedRequestStream.cs","distinct":true,"url":"https://api.github.com/repos/OQO/websocket-sharp/commits/4be6ef84947d4bc98978fc339ca8e8109bd2dbcb"},{"sha":"22778052f391bc5a694cf39ed9f0b8219355bb6e","author":{"email":"e9eb5fb12fca54ee1fb793474c43ae6232e23026@gmail.com","name":"sta"},"message":"Fix for issue #43","distinct":true,"url":"https://api.github.com/repos/OQO/websocket-sharp/commits/22778052f391bc5a694cf39ed9f0b8219355bb6e"},{"sha":"142fc2213d0514c1b101a4a7ca0d672bd6c0ff4e","author":{"email":"e9eb5fb12fca54ee1fb793474c43ae6232e23026@gmail.com","name":"sta"},"message":"Fix a few for Chunk.cs","distinct":true,"url":"https://api.github.com/repos/OQO/websocket-sharp/commits/142fc2213d0514c1b101a4a7ca0d672bd6c0ff4e"},{"sha":"5bd88ee1a320d4fb677a443c5ac53e8bfc7a0934","author":{"email":"e9eb5fb12fca54ee1fb793474c43ae6232e23026@gmail.com","name":"sta"},"message":"Fix a few for WebSocket.cs","distinct":true,"url":"https://api.github.com/repos/OQO/websocket-sharp/commits/5bd88ee1a320d4fb677a443c5ac53e8bfc7a0934"},{"sha":"be1470a32ef6ea6c0d6aa07480e671ab930a11cd","author":{"email":"e9eb5fb12fca54ee1fb793474c43ae6232e23026@gmail.com","name":"sta"},"message":"Fix for issue #47, and refactored HttpListenerRequest.cs","distinct":true,"url":"https://api.github.com/repos/OQO/websocket-sharp/commits/be1470a32ef6ea6c0d6aa07480e671ab930a11cd"},{"sha":"de88dc3b15d3a41fd6001b6c553c1978c9eb9190","author":{"email":"e9eb5fb12fca54ee1fb793474c43ae6232e23026@gmail.com","name":"sta"},"message":"Fix a few for WebSocket.cs","distinct":true,"url":"https://api.github.com/repos/OQO/websocket-sharp/commits/de88dc3b15d3a41fd6001b6c553c1978c9eb9190"},{"sha":"6a063c64d4d187a163cf1bb5bdeb17b10ba51cb7","author":{"email":"e9eb5fb12fca54ee1fb793474c43ae6232e23026@gmail.com","name":"sta"},"message":"Refactored HttpListenerResponse.cs","distinct":true,"url":"https://api.github.com/repos/OQO/websocket-sharp/commits/6a063c64d4d187a163cf1bb5bdeb17b10ba51cb7"},{"sha":"0b8349869dabac132b30de0068804c79ab4230e0","author":{"email":"e9eb5fb12fca54ee1fb793474c43ae6232e23026@gmail.com","name":"sta"},"message":"Fix a few for HttpListenerResponse.cs","distinct":true,"url":"https://api.github.com/repos/OQO/websocket-sharp/commits/0b8349869dabac132b30de0068804c79ab4230e0"},{"sha":"5e1539c660a865762b3e999402806e55545db5bb","author":{"email":"e9eb5fb12fca54ee1fb793474c43ae6232e23026@gmail.com","name":"sta"},"message":"Fix a few for WebHeaderCollection.cs","distinct":true,"url":"https://api.github.com/repos/OQO/websocket-sharp/commits/5e1539c660a865762b3e999402806e55545db5bb"},{"sha":"bdb7e415bd059f95307b02739a4160817eb3b6a2","author":{"email":"e9eb5fb12fca54ee1fb793474c43ae6232e23026@gmail.com","name":"sta"},"message":"Fix a few for WebHeaderCollection.cs","distinct":true,"url":"https://api.github.com/repos/OQO/websocket-sharp/commits/bdb7e415bd059f95307b02739a4160817eb3b6a2"},{"sha":"72565cc8fe460f7253dcebc8b2402aedfaf44747","author":{"email":"e9eb5fb12fca54ee1fb793474c43ae6232e23026@gmail.com","name":"sta"},"message":"Fix a few for HttpListenerRequest.cs","distinct":true,"url":"https://api.github.com/repos/OQO/websocket-sharp/commits/72565cc8fe460f7253dcebc8b2402aedfaf44747"},{"sha":"f85f227a7923abebf2b50c3ca4c616a38633de9a","author":{"email":"e9eb5fb12fca54ee1fb793474c43ae6232e23026@gmail.com","name":"sta"},"message":"Fix for force close in HttpConnection.cs","distinct":true,"url":"https://api.github.com/repos/OQO/websocket-sharp/commits/f85f227a7923abebf2b50c3ca4c616a38633de9a"},{"sha":"74b8bb392ce7314f23fe7f9d88dce3c15bdf72f9","author":{"email":"e9eb5fb12fca54ee1fb793474c43ae6232e23026@gmail.com","name":"sta"},"message":"Fix for request url in HttpListenerRequest.cs","distinct":true,"url":"https://api.github.com/repos/OQO/websocket-sharp/commits/74b8bb392ce7314f23fe7f9d88dce3c15bdf72f9"}]},"public":true,"created_at":"2015-01-01T15:00:31Z"}
,{"id":"2489651345","type":"GollumEvent","actor":{"id":2152766,"login":"mottosso","gravatar_id":"","url":"https://api.github.com/users/mottosso","avatar_url":"https://avatars.githubusercontent.com/u/2152766?"},"repo":{"id":24176031,"name":"pyqt/python-qt5","url":"https://api.github.com/repos/pyqt/python-qt5"},"payload":{"pages":[{"page_name":"Compiling-PyQt5-on-Ubuntu-12.04","title":"Compiling PyQt5 on Ubuntu 12.04","summary":null,"action":"edited","sha":"671d61709abc28cf10063f00c5d534bcdfc7d77b","html_url":"https://github.com/pyqt/python-qt5/wiki/Compiling-PyQt5-on-Ubuntu-12.04"}]},"public":true,"created_at":"2015-01-01T15:00:31Z","org":{"id":8809976,"login":"pyqt","gravatar_id":"","url":"https://api.github.com/orgs/pyqt","avatar_url":"https://avatars.githubusercontent.com/u/8809976?"}}
,{"id":"2489651349","type":"WatchEvent","actor":{"id":1687276,"login":"iVanPan","gravatar_id":"","url":"https://api.github.com/users/iVanPan","avatar_url":"https://avatars.githubusercontent.com/u/1687276?"},"repo":{"id":21558697,"name":"pedant/safe-java-js-webview-bridge","url":"https://api.github.com/repos/pedant/safe-java-js-webview-bridge"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:00:31Z"}
,{"id":"2489651353","type":"PushEvent","actor":{"id":829292,"login":"vanakenm","gravatar_id":"","url":"https://api.github.com/users/vanakenm","avatar_url":"https://avatars.githubusercontent.com/u/829292?"},"repo":{"id":28354641,"name":"vanakenm/fullstack-challenges","url":"https://api.github.com/repos/vanakenm/fullstack-challenges"},"payload":{"push_id":536864123,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"76d087e4006c437e278cfb5130e250bea8000ef7","before":"24315939795c402709df7d691957020fb6046f8b","commits":[{"sha":"76d087e4006c437e278cfb5130e250bea8000ef7","author":{"email":"54669547a225ff20cba8b75a4adca540eef25858@joyouscoding.com","name":"vanakenm"},"message":"html","distinct":true,"url":"https://api.github.com/repos/vanakenm/fullstack-challenges/commits/76d087e4006c437e278cfb5130e250bea8000ef7"}]},"public":true,"created_at":"2015-01-01T15:00:32Z"}
,{"id":"2489651361","type":"IssueCommentEvent","actor":{"id":6243408,"login":"rnaby","gravatar_id":"","url":"https://api.github.com/users/rnaby","avatar_url":"https://avatars.githubusercontent.com/u/6243408?"},"repo":{"id":19650991,"name":"DevPress/DP-Dashboard","url":"https://api.github.com/repos/DevPress/DP-Dashboard"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/DevPress/DP-Dashboard/issues/1","labels_url":"https://api.github.com/repos/DevPress/DP-Dashboard/issues/1/labels{/name}","comments_url":"https://api.github.com/repos/DevPress/DP-Dashboard/issues/1/comments","events_url":"https://api.github.com/repos/DevPress/DP-Dashboard/issues/1/events","html_url":"https://github.com/DevPress/DP-Dashboard/issues/1","id":50233014,"number":1,"title":"Supported WP Versions?","user":{"login":"Satori83","id":3317473,"avatar_url":"https://avatars.githubusercontent.com/u/3317473?v=3","gravatar_id":"","url":"https://api.github.com/users/Satori83","html_url":"https://github.com/Satori83","followers_url":"https://api.github.com/users/Satori83/followers","following_url":"https://api.github.com/users/Satori83/following{/other_user}","gists_url":"https://api.github.com/users/Satori83/gists{/gist_id}","starred_url":"https://api.github.com/users/Satori83/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Satori83/subscriptions","organizations_url":"https://api.github.com/users/Satori83/orgs","repos_url":"https://api.github.com/users/Satori83/repos","events_url":"https://api.github.com/users/Satori83/events{/privacy}","received_events_url":"https://api.github.com/users/Satori83/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2014-11-26T22:15:21Z","updated_at":"2015-01-01T15:00:33Z","closed_at":null,"body":"Can anyone tell me what WP versions are currently supported in this plugin?"},"comment":{"url":"https://api.github.com/repos/DevPress/DP-Dashboard/issues/comments/68488502","html_url":"https://github.com/DevPress/DP-Dashboard/issues/1#issuecomment-68488502","issue_url":"https://api.github.com/repos/DevPress/DP-Dashboard/issues/1","id":68488502,"user":{"login":"rnaby","id":6243408,"avatar_url":"https://avatars.githubusercontent.com/u/6243408?v=3","gravatar_id":"","url":"https://api.github.com/users/rnaby","html_url":"https://github.com/rnaby","followers_url":"https://api.github.com/users/rnaby/followers","following_url":"https://api.github.com/users/rnaby/following{/other_user}","gists_url":"https://api.github.com/users/rnaby/gists{/gist_id}","starred_url":"https://api.github.com/users/rnaby/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rnaby/subscriptions","organizations_url":"https://api.github.com/users/rnaby/orgs","repos_url":"https://api.github.com/users/rnaby/repos","events_url":"https://api.github.com/users/rnaby/events{/privacy}","received_events_url":"https://api.github.com/users/rnaby/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:00:33Z","updated_at":"2015-01-01T15:00:33Z","body":"I've tested with WP 4.0.1 and it worked pretty well. :) @Satori83 "}},"public":true,"created_at":"2015-01-01T15:00:33Z","org":{"id":7528159,"login":"DevPress","gravatar_id":"","url":"https://api.github.com/orgs/DevPress","avatar_url":"https://avatars.githubusercontent.com/u/7528159?"}}
,{"id":"2489651377","type":"PushEvent","actor":{"id":1560181,"login":"Adaptivity","gravatar_id":"","url":"https://api.github.com/users/Adaptivity","avatar_url":"https://avatars.githubusercontent.com/u/1560181?"},"repo":{"id":23959316,"name":"Adaptivity/AlchemyPlusPlus","url":"https://api.github.com/repos/Adaptivity/AlchemyPlusPlus"},"payload":{"push_id":536864134,"size":1,"distinct_size":1,"ref":"refs/heads/patch-1","head":"9b030b578f898458765d9be3d66553d3c619c16e","before":"d23dff0c4078dd66b373dfe050bf7339135a495e","commits":[{"sha":"9b030b578f898458765d9be3d66553d3c619c16e","author":{"email":"ac090b77375f06e6ec5e15967cc07eee7f097787@gmail.com","name":"Anton"},"message":"Update en_US.lang","distinct":true,"url":"https://api.github.com/repos/Adaptivity/AlchemyPlusPlus/commits/9b030b578f898458765d9be3d66553d3c619c16e"}]},"public":true,"created_at":"2015-01-01T15:00:36Z"}
,{"id":"2489651376","type":"PushEvent","actor":{"id":210312,"login":"micahyoung","gravatar_id":"","url":"https://api.github.com/users/micahyoung","avatar_url":"https://avatars.githubusercontent.com/u/210312?"},"repo":{"id":25281621,"name":"micahyoung/citibike-data","url":"https://api.github.com/repos/micahyoung/citibike-data"},"payload":{"push_id":536864133,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"48c350cf9e07dea1db9809dbcd879839e9f53291","before":"c4154ef1794264461160edfcddbc3889584e5e2f","commits":[{"sha":"48c350cf9e07dea1db9809dbcd879839e9f53291","author":{"email":"45b9372d3d6883e588eb18cca37878d6aa2d5cd5@young.io","name":"Micah Young"},"message":"1420124402","distinct":true,"url":"https://api.github.com/repos/micahyoung/citibike-data/commits/48c350cf9e07dea1db9809dbcd879839e9f53291"}]},"public":true,"created_at":"2015-01-01T15:00:36Z"}
,{"id":"2489651380","type":"PushEvent","actor":{"id":4921183,"login":"kamranahmedse","gravatar_id":"","url":"https://api.github.com/users/kamranahmedse","avatar_url":"https://avatars.githubusercontent.com/u/4921183?"},"repo":{"id":26853048,"name":"kamranahmedse/kamranahmedse.github.io","url":"https://api.github.com/repos/kamranahmedse/kamranahmedse.github.io"},"payload":{"push_id":536864136,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"aec12518c2ff5a5d77bcedd7a82f98792b3e1137","before":"fd5cda301ae106f73ed147060f8a9f1112fbf425","commits":[{"sha":"aec12518c2ff5a5d77bcedd7a82f98792b3e1137","author":{"email":"fa0bc2fb54f782af56a7e6f70cb96a7e98c52ea2@gmail.com","name":"Kamran Ahmed"},"message":"Update 2015-01-01-github-took-me-back-in-time.md","distinct":true,"url":"https://api.github.com/repos/kamranahmedse/kamranahmedse.github.io/commits/aec12518c2ff5a5d77bcedd7a82f98792b3e1137"}]},"public":true,"created_at":"2015-01-01T15:00:36Z"}
,{"id":"2489651381","type":"PushEvent","actor":{"id":7034200,"login":"BimbaLaszlo","gravatar_id":"","url":"https://api.github.com/users/BimbaLaszlo","avatar_url":"https://avatars.githubusercontent.com/u/7034200?"},"repo":{"id":23027352,"name":"BimbaLaszlo/vim-eight","url":"https://api.github.com/repos/BimbaLaszlo/vim-eight"},"payload":{"push_id":536864138,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"63557415a24106fb35a83f43a97de3eb7ce01aae","before":"20747159156b873a801a0850f0302b653d90a9b2","commits":[{"sha":"63557415a24106fb35a83f43a97de3eb7ce01aae","author":{"email":"682156ba2c001129511d88c98f21be630a220f7a@gmail.com","name":"BimbaLaszlo"},"message":"set compiler","distinct":true,"url":"https://api.github.com/repos/BimbaLaszlo/vim-eight/commits/63557415a24106fb35a83f43a97de3eb7ce01aae"}]},"public":true,"created_at":"2015-01-01T15:00:36Z"}
,{"id":"2489651382","type":"PushEvent","actor":{"id":210312,"login":"micahyoung","gravatar_id":"","url":"https://api.github.com/users/micahyoung","avatar_url":"https://avatars.githubusercontent.com/u/210312?"},"repo":{"id":16091467,"name":"micahyoung/cbstats-data","url":"https://api.github.com/repos/micahyoung/cbstats-data"},"payload":{"push_id":536864139,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"6fec7c7a952c6e3150abe090ddb781edc12bdc72","before":"dbb2d68dba5a00b6c87dc00b3a7f2fd9459daa2a","commits":[{"sha":"6fec7c7a952c6e3150abe090ddb781edc12bdc72","author":{"email":"45b9372d3d6883e588eb18cca37878d6aa2d5cd5@young.io","name":"Micah Young"},"message":"1420124402","distinct":true,"url":"https://api.github.com/repos/micahyoung/cbstats-data/commits/6fec7c7a952c6e3150abe090ddb781edc12bdc72"}]},"public":true,"created_at":"2015-01-01T15:00:36Z"}
,{"id":"2489651384","type":"PushEvent","actor":{"id":3634239,"login":"zodex","gravatar_id":"","url":"https://api.github.com/users/zodex","avatar_url":"https://avatars.githubusercontent.com/u/3634239?"},"repo":{"id":17524983,"name":"CRXTeam/android_frameworks_base","url":"https://api.github.com/repos/CRXTeam/android_frameworks_base"},"payload":{"push_id":536864140,"size":1,"distinct_size":1,"ref":"refs/heads/lollipop","head":"60082a637f0e7b4e9a7e1b105109b258b0b2a52b","before":"b614124b09c4e40b1a6f43ccfc025b454911f837","commits":[{"sha":"60082a637f0e7b4e9a7e1b105109b258b0b2a52b","author":{"email":"60eb9d7a29ff8c0feb8ff6e683cb848cd0cb326e@gmail.com","name":"Scott Warner"},"message":"QuickSettings: Add long click support\n\nAdd long click support for QS tiles, and add actions for common tiles\n\nChange-Id: I2b5940e1bf8ec80f03901fc2b017df68161b48ae\n\nConflicts:\n\tpackages/SystemUI/src/com/android/systemui/qs/tiles/RotationLockTile.java","distinct":true,"url":"https://api.github.com/repos/CRXTeam/android_frameworks_base/commits/60082a637f0e7b4e9a7e1b105109b258b0b2a52b"}]},"public":true,"created_at":"2015-01-01T15:00:36Z","org":{"id":6718659,"login":"CRXTeam","gravatar_id":"","url":"https://api.github.com/orgs/CRXTeam","avatar_url":"https://avatars.githubusercontent.com/u/6718659?"}}
,{"id":"2489651385","type":"PushEvent","actor":{"id":10252673,"login":"quhezheng","gravatar_id":"","url":"https://api.github.com/users/quhezheng","avatar_url":"https://avatars.githubusercontent.com/u/10252673?"},"repo":{"id":28398342,"name":"quhezheng/HomeIP","url":"https://api.github.com/repos/quhezheng/HomeIP"},"payload":{"push_id":536864141,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"494d351b663ab026ddb2d6d39003a24eb8346e7c","before":"994c7130a9f90ed1dc4bb09817058a9cc7654c20","commits":[{"sha":"494d351b663ab026ddb2d6d39003a24eb8346e7c","author":{"email":"798520c19e899fb2be364efde581283231d48b6f@126.com","name":"quhezheng"},"message":"update","distinct":true,"url":"https://api.github.com/repos/quhezheng/HomeIP/commits/494d351b663ab026ddb2d6d39003a24eb8346e7c"}]},"public":true,"created_at":"2015-01-01T15:00:36Z"}
,{"id":"2489651386","type":"WatchEvent","actor":{"id":3499186,"login":"cnsouka","gravatar_id":"","url":"https://api.github.com/users/cnsouka","avatar_url":"https://avatars.githubusercontent.com/u/3499186?"},"repo":{"id":3301400,"name":"MinecraftForge/MinecraftForge","url":"https://api.github.com/repos/MinecraftForge/MinecraftForge"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:00:37Z","org":{"id":1390178,"login":"MinecraftForge","gravatar_id":"","url":"https://api.github.com/orgs/MinecraftForge","avatar_url":"https://avatars.githubusercontent.com/u/1390178?"}}
,{"id":"2489651390","type":"WatchEvent","actor":{"id":82952,"login":"vigo","gravatar_id":"","url":"https://api.github.com/users/vigo","avatar_url":"https://avatars.githubusercontent.com/u/82952?"},"repo":{"id":19387158,"name":"0x73/Oc","url":"https://api.github.com/repos/0x73/Oc"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:00:38Z"}
,{"id":"2489651392","type":"IssueCommentEvent","actor":{"id":256041,"login":"nikosdion","gravatar_id":"","url":"https://api.github.com/users/nikosdion","avatar_url":"https://avatars.githubusercontent.com/u/256041?"},"repo":{"id":14451140,"name":"akeeba/akeebasubs","url":"https://api.github.com/repos/akeeba/akeebasubs"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/akeeba/akeebasubs/issues/87","labels_url":"https://api.github.com/repos/akeeba/akeebasubs/issues/87/labels{/name}","comments_url":"https://api.github.com/repos/akeeba/akeebasubs/issues/87/comments","events_url":"https://api.github.com/repos/akeeba/akeebasubs/issues/87/events","html_url":"https://github.com/akeeba/akeebasubs/issues/87","id":53219834,"number":87,"title":"Validation of the new EU checkboxes.","user":{"login":"compojoom","id":693770,"avatar_url":"https://avatars.githubusercontent.com/u/693770?v=3","gravatar_id":"","url":"https://api.github.com/users/compojoom","html_url":"https://github.com/compojoom","followers_url":"https://api.github.com/users/compojoom/followers","following_url":"https://api.github.com/users/compojoom/following{/other_user}","gists_url":"https://api.github.com/users/compojoom/gists{/gist_id}","starred_url":"https://api.github.com/users/compojoom/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/compojoom/subscriptions","organizations_url":"https://api.github.com/users/compojoom/orgs","repos_url":"https://api.github.com/users/compojoom/repos","events_url":"https://api.github.com/users/compojoom/events{/privacy}","received_events_url":"https://api.github.com/users/compojoom/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2015-01-01T13:37:08Z","updated_at":"2015-01-01T15:00:37Z","closed_at":null,"body":"Hey guys,\r\nWhen you submit the form for the first time a JS validation of the fields kicks in. Whenever I check any of the checkboxes the \"please confirm to continue\" text dissapears and then appears again a second after the validation is complete. The same happens with the TOS.\r\nYou can recreate the issue on your sub page as well: https://www.akeebabackup.com/subscribe/new/atpro.html?layout=default"},"comment":{"url":"https://api.github.com/repos/akeeba/akeebasubs/issues/comments/68488503","html_url":"https://github.com/akeeba/akeebasubs/issues/87#issuecomment-68488503","issue_url":"https://api.github.com/repos/akeeba/akeebasubs/issues/87","id":68488503,"user":{"login":"nikosdion","id":256041,"avatar_url":"https://avatars.githubusercontent.com/u/256041?v=3","gravatar_id":"","url":"https://api.github.com/users/nikosdion","html_url":"https://github.com/nikosdion","followers_url":"https://api.github.com/users/nikosdion/followers","following_url":"https://api.github.com/users/nikosdion/following{/other_user}","gists_url":"https://api.github.com/users/nikosdion/gists{/gist_id}","starred_url":"https://api.github.com/users/nikosdion/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/nikosdion/subscriptions","organizations_url":"https://api.github.com/users/nikosdion/orgs","repos_url":"https://api.github.com/users/nikosdion/repos","events_url":"https://api.github.com/users/nikosdion/events{/privacy}","received_events_url":"https://api.github.com/users/nikosdion/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:00:37Z","updated_at":"2015-01-01T15:00:37Z","body":"I know. I won't debug for a few days to weeks. It is very low priority for me. Care to debug yourself?="}},"public":true,"created_at":"2015-01-01T15:00:38Z","org":{"id":4135934,"login":"akeeba","gravatar_id":"","url":"https://api.github.com/orgs/akeeba","avatar_url":"https://avatars.githubusercontent.com/u/4135934?"}}
,{"id":"2489651393","type":"DeleteEvent","actor":{"id":6325631,"login":"pirej","gravatar_id":"","url":"https://api.github.com/users/pirej","avatar_url":"https://avatars.githubusercontent.com/u/6325631?"},"repo":{"id":27979491,"name":"lollipoop/android_vendor_omni","url":"https://api.github.com/repos/lollipoop/android_vendor_omni"},"payload":{"ref":"m4","ref_type":"branch","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:00:38Z","org":{"id":10051895,"login":"lollipoop","gravatar_id":"","url":"https://api.github.com/orgs/lollipoop","avatar_url":"https://avatars.githubusercontent.com/u/10051895?"}}
,{"id":"2489651394","type":"PushEvent","actor":{"id":827024,"login":"avishayil","gravatar_id":"","url":"https://api.github.com/users/avishayil","avatar_url":"https://avatars.githubusercontent.com/u/827024?"},"repo":{"id":28687734,"name":"avishayil/wordpress-post-fb-url-linter","url":"https://api.github.com/repos/avishayil/wordpress-post-fb-url-linter"},"payload":{"push_id":536864143,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"34eb55f3ab775b60b10df241e786c792e129a238","before":"fd194759a277f066326c96abd385ffa68f28ea50","commits":[{"sha":"34eb55f3ab775b60b10df241e786c792e129a238","author":{"email":"2beb02123bdb59251461d915f454c5a061ce3f30@geekmedia.co.il","name":"Avishay Bassa"},"message":"Updates to readme.md","distinct":true,"url":"https://api.github.com/repos/avishayil/wordpress-post-fb-url-linter/commits/34eb55f3ab775b60b10df241e786c792e129a238"}]},"public":true,"created_at":"2015-01-01T15:00:38Z"}
,{"id":"2489651395","type":"PushEvent","actor":{"id":9826478,"login":"SrJosue1","gravatar_id":"","url":"https://api.github.com/users/SrJosue1","avatar_url":"https://avatars.githubusercontent.com/u/9826478?"},"repo":{"id":28688368,"name":"SrJosue1/Testing","url":"https://api.github.com/repos/SrJosue1/Testing"},"payload":{"push_id":536864144,"size":1,"distinct_size":1,"ref":"refs/heads/hg-page","head":"953dbf1b42ee1d9616b91427df1897911cf0c477","before":"82e0ca5aa55951315fde91b4614915519ddf85ac","commits":[{"sha":"953dbf1b42ee1d9616b91427df1897911cf0c477","author":{"email":"59bd0a3ff43b32849b319e645d4798d8a5d1e889@mycpaccess.tk","name":"Josue"},"message":"Testing_Videos","distinct":true,"url":"https://api.github.com/repos/SrJosue1/Testing/commits/953dbf1b42ee1d9616b91427df1897911cf0c477"}]},"public":true,"created_at":"2015-01-01T15:00:38Z"}
,{"id":"2489651401","type":"CreateEvent","actor":{"id":1793469,"login":"tan-tan-kanarek","gravatar_id":"","url":"https://api.github.com/users/tan-tan-kanarek","avatar_url":"https://avatars.githubusercontent.com/u/1793469?"},"repo":{"id":15510138,"name":"kaltura/platform-install-packages","url":"https://api.github.com/repos/kaltura/platform-install-packages"},"payload":{"ref":"Jupiter-10.2.0-monit","ref_type":"branch","master_branch":"Jupiter-10.2.0","description":"Official deployment packages to install the Kaltura platform on a server or cluster environments using native OS package managers","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:00:38Z","org":{"id":319096,"login":"kaltura","gravatar_id":"","url":"https://api.github.com/orgs/kaltura","avatar_url":"https://avatars.githubusercontent.com/u/319096?"}}
,{"id":"2489651403","type":"PushEvent","actor":{"id":370793,"login":"Ratmir15","gravatar_id":"","url":"https://api.github.com/users/Ratmir15","avatar_url":"https://avatars.githubusercontent.com/u/370793?"},"repo":{"id":3652623,"name":"Ratmir15/hz-base","url":"https://api.github.com/repos/Ratmir15/hz-base"},"payload":{"push_id":536864147,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"13112bea8af8930db751c479f9791b7e05d087fb","before":"adc7c2a9aab85e0312850a07314ff37acaf36467","commits":[{"sha":"13112bea8af8930db751c479f9791b7e05d087fb","author":{"email":"1de0837f738a2fcf8dd0b85edef8d919b335fdeb@yandex.ru","name":"Ratmir"},"message":"dump","distinct":true,"url":"https://api.github.com/repos/Ratmir15/hz-base/commits/13112bea8af8930db751c479f9791b7e05d087fb"}]},"public":true,"created_at":"2015-01-01T15:00:38Z"}
,{"id":"2489651404","type":"PushEvent","actor":{"id":1218603,"login":"eraydiler","gravatar_id":"","url":"https://api.github.com/users/eraydiler","avatar_url":"https://avatars.githubusercontent.com/u/1218603?"},"repo":{"id":27305177,"name":"iOS-7-Lessons/Matched-Up","url":"https://api.github.com/repos/iOS-7-Lessons/Matched-Up"},"payload":{"push_id":536864148,"size":1,"distinct_size":1,"ref":"refs/heads/EndOf#368","head":"1d1646bbc3a16dd2a878f96858acfa30b133a002","before":"15d4c2ab9ce9a3830f45fe5d096a633c77eacee9","commits":[{"sha":"1d1646bbc3a16dd2a878f96858acfa30b133a002","author":{"email":"f2a92d87ff16c93d174aad6f95ea63c28119ba41@Eray-MacBook-Pro.local","name":"Eray"},"message":"Duplicates were deleted.","distinct":true,"url":"https://api.github.com/repos/iOS-7-Lessons/Matched-Up/commits/1d1646bbc3a16dd2a878f96858acfa30b133a002"}]},"public":true,"created_at":"2015-01-01T15:00:38Z","org":{"id":9675649,"login":"iOS-7-Lessons","gravatar_id":"","url":"https://api.github.com/orgs/iOS-7-Lessons","avatar_url":"https://avatars.githubusercontent.com/u/9675649?"}}
,{"id":"2489651405","type":"PushEvent","actor":{"id":4419146,"login":"hex7c0","gravatar_id":"","url":"https://api.github.com/users/hex7c0","avatar_url":"https://avatars.githubusercontent.com/u/4419146?"},"repo":{"id":27127029,"name":"hex7c0/json-decrypt","url":"https://api.github.com/repos/hex7c0/json-decrypt"},"payload":{"push_id":536864149,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"698001314bcfec3799017415f5e56c7137e50d14","before":"c16ff79d97b2982f142e7919c987cb5f3c40974c","commits":[{"sha":"5d12a95f5c955c5660f7250e6f10aed48f32bebd","author":{"email":"de7d41e33d0bb4bff781eaaec15a77fd8e342187@gmail.com","name":"hex7c0"},"message":"travis docker","distinct":true,"url":"https://api.github.com/repos/hex7c0/json-decrypt/commits/5d12a95f5c955c5660f7250e6f10aed48f32bebd"},{"sha":"698001314bcfec3799017415f5e56c7137e50d14","author":{"email":"de7d41e33d0bb4bff781eaaec15a77fd8e342187@gmail.com","name":"hex7c0"},"message":"update devDependencies","distinct":true,"url":"https://api.github.com/repos/hex7c0/json-decrypt/commits/698001314bcfec3799017415f5e56c7137e50d14"}]},"public":true,"created_at":"2015-01-01T15:00:39Z"}
,{"id":"2489651408","type":"PushEvent","actor":{"id":5622390,"login":"stevensouza","gravatar_id":"","url":"https://api.github.com/users/stevensouza","avatar_url":"https://avatars.githubusercontent.com/u/5622390?"},"repo":{"id":18473416,"name":"stevensouza/testproject","url":"https://api.github.com/repos/stevensouza/testproject"},"payload":{"push_id":536864151,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"92db85bd8f8d350af29500ccd6d15f1bc4589e61","before":"846d1902b1446a569a7f73c1d94b7fdd5c83d367","commits":[{"sha":"92db85bd8f8d350af29500ccd6d15f1bc4589e61","author":{"email":"9ce5770b3bb4b2a1d59be2d97e34379cd192299f@stevesouza.com","name":"Steve Souza"},"message":"added sigar test code (returns operating system info)","distinct":true,"url":"https://api.github.com/repos/stevensouza/testproject/commits/92db85bd8f8d350af29500ccd6d15f1bc4589e61"}]},"public":true,"created_at":"2015-01-01T15:00:39Z"}
,{"id":"2489651410","type":"CreateEvent","actor":{"id":9118616,"login":"piotrzalewski","gravatar_id":"","url":"https://api.github.com/users/piotrzalewski","avatar_url":"https://avatars.githubusercontent.com/u/9118616?"},"repo":{"id":28688538,"name":"piotrzalewski/GAEPrime","url":"https://api.github.com/repos/piotrzalewski/GAEPrime"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"GAE project for testing.","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:00:39Z"}
,{"id":"2489651411","type":"WatchEvent","actor":{"id":2599479,"login":"alecourtes","gravatar_id":"","url":"https://api.github.com/users/alecourtes","avatar_url":"https://avatars.githubusercontent.com/u/2599479?"},"repo":{"id":13126364,"name":"willfarrell/alfred-youtube-workflow","url":"https://api.github.com/repos/willfarrell/alfred-youtube-workflow"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:00:39Z"}
,{"id":"2489651412","type":"PushEvent","actor":{"id":3148102,"login":"syon","gravatar_id":"","url":"https://api.github.com/users/syon","avatar_url":"https://avatars.githubusercontent.com/u/3148102?"},"repo":{"id":21061659,"name":"syon/andy-hiroyuki.github.io","url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io"},"payload":{"push_id":536864154,"size":1,"distinct_size":1,"ref":"refs/heads/middleman","head":"a133ccb43da62f8b35640a3519e5a519669e1573","before":"35ebbf4bbad8b9ade13abe3b89265469fec781df","commits":[{"sha":"a133ccb43da62f8b35640a3519e5a519669e1573","author":{"email":"efb10bbac3105896ed72c82c36828ccc7a2547da@gmail.com","name":"syon"},"message":"Silver Forest","distinct":true,"url":"https://api.github.com/repos/syon/andy-hiroyuki.github.io/commits/a133ccb43da62f8b35640a3519e5a519669e1573"}]},"public":true,"created_at":"2015-01-01T15:00:39Z"}
,{"id":"2489651413","type":"GollumEvent","actor":{"id":2254431,"login":"osler","gravatar_id":"","url":"https://api.github.com/users/osler","avatar_url":"https://avatars.githubusercontent.com/u/2254431?"},"repo":{"id":28687819,"name":"osler/World-of-Warcraft-Modding","url":"https://api.github.com/repos/osler/World-of-Warcraft-Modding"},"payload":{"pages":[{"page_name":"_Sidebar","title":"_Sidebar","summary":null,"action":"edited","sha":"f843e0cd86ab9c9807d41c307203e3c796e306ff","html_url":"https://github.com/osler/World-of-Warcraft-Modding/wiki/_Sidebar"}]},"public":true,"created_at":"2015-01-01T15:00:39Z"}
,{"id":"2489651414","type":"PushEvent","actor":{"id":2413283,"login":"cristianomatos","gravatar_id":"","url":"https://api.github.com/users/cristianomatos","avatar_url":"https://avatars.githubusercontent.com/u/2413283?"},"repo":{"id":26325354,"name":"crdroidandroid/android_packages_apps_Settings","url":"https://api.github.com/repos/crdroidandroid/android_packages_apps_Settings"},"payload":{"push_id":536864155,"size":3,"distinct_size":3,"ref":"refs/heads/cm-12.0","head":"5de56924398030dde1afea7e9c41da102ea903e7","before":"ed34c8185ef67b91b24478029ad5fcf22142443a","commits":[{"sha":"924cbbe557b5a676f29628afbb5b035b86400ba7","author":{"email":"28dad2a4fd4400519093d168b4416744edb2e68c@gmail.com","name":"cristianomatos"},"message":"Follow CyanogenMod on ButtonBacklightBrightness\n\nWe already have this feature ported from cm11 and this commit just follow minor things\n\n- Check this commit: 33aa700ddf9deedb9243d5d3a243b51c6db4543f","distinct":true,"url":"https://api.github.com/repos/crdroidandroid/android_packages_apps_Settings/commits/924cbbe557b5a676f29628afbb5b035b86400ba7"},{"sha":"08ddf9e2f30fc6389aff016a4b4c6bdcda8967a3","author":{"email":"28dad2a4fd4400519093d168b4416744edb2e68c@gmail.com","name":"cristianomatos"},"message":"AOKP system animations: add Animation controls exit only and Animations controls reverse exit [2/2]\n\n- Work by @Stevespear426 and a complement of this commit: https://github.com/crdroidandroid/android_packages_apps_Settings/commit/a7625ef52ee959eafec9cca7511b38b5a9d13597","distinct":true,"url":"https://api.github.com/repos/crdroidandroid/android_packages_apps_Settings/commits/08ddf9e2f30fc6389aff016a4b4c6bdcda8967a3"},{"sha":"5de56924398030dde1afea7e9c41da102ea903e7","author":{"email":"28dad2a4fd4400519093d168b4416744edb2e68c@gmail.com","name":"cristianomatos"},"message":"Match AOKP changes for system animations\n\nHere is the commit: https://github.com/AOKP/packages_apps_ROMControl/commit/6b5789328815c9e718a17d3d772d35f8ec22b57c\n\nI just can't find the email to put you as tha author\n\nThanks to @BytecodeMe","distinct":true,"url":"https://api.github.com/repos/crdroidandroid/android_packages_apps_Settings/commits/5de56924398030dde1afea7e9c41da102ea903e7"}]},"public":true,"created_at":"2015-01-01T15:00:39Z","org":{"id":9610671,"login":"crdroidandroid","gravatar_id":"","url":"https://api.github.com/orgs/crdroidandroid","avatar_url":"https://avatars.githubusercontent.com/u/9610671?"}}
,{"id":"2489651415","type":"DeleteEvent","actor":{"id":1646422,"login":"brunocarvalhodearaujo","gravatar_id":"","url":"https://api.github.com/users/brunocarvalhodearaujo","avatar_url":"https://avatars.githubusercontent.com/u/1646422?"},"repo":{"id":28688285,"name":"brunocarvalhodearaujo/datastore","url":"https://api.github.com/repos/brunocarvalhodearaujo/datastore"},"payload":{"ref":"0.2","ref_type":"branch","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:00:39Z"}
,{"id":"2489651416","type":"PushEvent","actor":{"id":10364471,"login":"Derathir","gravatar_id":"","url":"https://api.github.com/users/Derathir","avatar_url":"https://avatars.githubusercontent.com/u/10364471?"},"repo":{"id":28687886,"name":"Derathir/PCaPP","url":"https://api.github.com/repos/Derathir/PCaPP"},"payload":{"push_id":536864157,"size":1,"distinct_size":1,"ref":"refs/heads/patch-1","head":"d2e68f31d0a91884c65ec454d5e7c56e1c66c3b3","before":"d8832d838ed16e3e068fba91c423c3c424ca335b","commits":[{"sha":"d2e68f31d0a91884c65ec454d5e7c56e1c66c3b3","author":{"email":"0762d2b4f0518f50ca1a535b2ee4401a1aea69d9@gmail.com","name":"Derathir"},"message":"Armor.xml\n\nI noticed that of the four Dragon Priest masks added by Dragonborn, only Miraak was covered by the XML. I added the missing three and reworked many of the others to 1) maintain balance between light and heavy armor types, 2) make sure the light/heavy status reflects the nature of the enchantment, 3) make dragon priest masks worth having compared to low- or mid-tier armor types, and 3) feature the maximum variety of material types, all while 4) ensuring the material type matches the mask's appearance (with the exception of Miraak, which I left unchanged). Here's the specifics:\r\n\r\nAdded the three other Dragon Priest Masks from Dragonborn:\r\nAhzidal - ScaledHeavy\r\nDukaan - HNordicHigh\r\nZahkriisos - EbonyLight\r\n\r\nChanged some of the materials on the existing Dragon Priest mask entries:\r\nOtar - GoldHeavy (from Glass) - better suited to heavy armor, and doesn't look like glass; glass is blue. The glass mask should probably be:\r\nMorokei - Glass (from Elven) - Krosis is already elven, so this prevents repeats (and it looks great with glass armor).\r\nVokun - LNordicHigh (from Steel Plate) - enchantment is better suited to light armor wearers.\r\nRahgot - OrkishLight (from Orkish) - enchantment is better suited to light armor wearers.\r\n\r\nKicked the stats for some of the other masks up to \"_High\" - nothing's more depressing than a crappy Dragon Priest mask. Specifically:\r\nKonahrik - DwarvenHigh (from Dwarven)\r\nHevnoraak - IronHigh (from Iron)\r\nVolsung - ScaledHigh (from Scaled) - it has a crappy enchantment, so it needs the armor rating boost.\r\nKrosis - ElvenHigh (from Elven)\r\n\r\nThis leaves us with 7 heavy and 6 light masks - Seems balanced.\r\n\r\nTL;DR I expanded and reworked Dragon Priest masks.","distinct":true,"url":"https://api.github.com/repos/Derathir/PCaPP/commits/d2e68f31d0a91884c65ec454d5e7c56e1c66c3b3"}]},"public":true,"created_at":"2015-01-01T15:00:39Z"}
,{"id":"2489651426","type":"PushEvent","actor":{"id":10083725,"login":"namangoel1","gravatar_id":"","url":"https://api.github.com/users/namangoel1","avatar_url":"https://avatars.githubusercontent.com/u/10083725?"},"repo":{"id":27712771,"name":"namangoel1/gci","url":"https://api.github.com/repos/namangoel1/gci"},"payload":{"push_id":536864159,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"ad53d2b1f9bdb711898406c9f89dc2f5631008eb","before":"13d4df7770fab8a04e973577b89d78ce552eff07","commits":[{"sha":"3bf52d12c2cca366c72d359c13d7c6e1ba99ba5c","author":{"email":"1d6e1cf70ec6f9ab28d3ea4b27a49a77654d370e@namanyayg.com","name":"Namanyay Goel"},"message":"Moving to angleconverter","distinct":true,"url":"https://api.github.com/repos/namangoel1/gci/commits/3bf52d12c2cca366c72d359c13d7c6e1ba99ba5c"},{"sha":"ad53d2b1f9bdb711898406c9f89dc2f5631008eb","author":{"email":"1d6e1cf70ec6f9ab28d3ea4b27a49a77654d370e@namanyayg.com","name":"Namanyay Goel"},"message":"Completing angleconverter","distinct":true,"url":"https://api.github.com/repos/namangoel1/gci/commits/ad53d2b1f9bdb711898406c9f89dc2f5631008eb"}]},"public":true,"created_at":"2015-01-01T15:00:41Z"}
,{"id":"2489651432","type":"PushEvent","actor":{"id":1222165,"login":"jmini","gravatar_id":"","url":"https://api.github.com/users/jmini","avatar_url":"https://avatars.githubusercontent.com/u/1222165?"},"repo":{"id":3136807,"name":"BSI-Business-Systems-Integration-AG/org.eclipsescout.demo","url":"https://api.github.com/repos/BSI-Business-Systems-Integration-AG/org.eclipsescout.demo"},"payload":{"push_id":536864161,"size":1,"distinct_size":1,"ref":"refs/heads/4.3","head":"ed36b05b9117bb090d4de2635b6909298dbe728e","before":"954324eba827679716e665948d5fd2cf8c24b614","commits":[{"sha":"ed36b05b9117bb090d4de2635b6909298dbe728e","author":{"email":"7cdfcbd9315be4cfd7bdf307b4ac78d3bcdb56ad@bsiag.com","name":"Jeremie Bresson"},"message":"Widgets: Use SharedCodeService (Bug 444213)\n\nAnd removed LocalCodeService.\n\nhttps://bugs.eclipse.org/bugs/show_bug.cgi?id=444213","distinct":true,"url":"https://api.github.com/repos/BSI-Business-Systems-Integration-AG/org.eclipsescout.demo/commits/ed36b05b9117bb090d4de2635b6909298dbe728e"}]},"public":true,"created_at":"2015-01-01T15:00:41Z","org":{"id":893651,"login":"BSI-Business-Systems-Integration-AG","gravatar_id":"","url":"https://api.github.com/orgs/BSI-Business-Systems-Integration-AG","avatar_url":"https://avatars.githubusercontent.com/u/893651?"}}
,{"id":"2489651434","type":"PushEvent","actor":{"id":2362917,"login":"chrisndodge","gravatar_id":"","url":"https://api.github.com/users/chrisndodge","avatar_url":"https://avatars.githubusercontent.com/u/2362917?"},"repo":{"id":10391073,"name":"edx/edx-platform","url":"https://api.github.com/repos/edx/edx-platform"},"payload":{"push_id":536864160,"size":2,"distinct_size":1,"ref":"refs/heads/master","head":"91a4796216b1aa5e7fbb2834b80894b93348bf6e","before":"4589a976763cd6997f5f77b9789103c1154d5d05","commits":[{"sha":"5a437b396e03857a256ffe1ba7e1b5c55c028bd9","author":{"email":"51e2c21eda4c9a37abf27381df1ac569253bbae3@arbisoft.com","name":"Muhammad Shoaib"},"message":"WL-168 When redeeming a Registration Code in the shopping cart, the user should be redirect to the Registration Code Redemption page\n\nimprovements suggested by william","distinct":false,"url":"https://api.github.com/repos/edx/edx-platform/commits/5a437b396e03857a256ffe1ba7e1b5c55c028bd9"},{"sha":"91a4796216b1aa5e7fbb2834b80894b93348bf6e","author":{"email":"9376b685e83a711fba45f684eafc9d02a9e477db@edx.org","name":"chrisndodge"},"message":"Merge pull request #6196 from edx/muhhshoaib/WL-168\n\nWL-168 When redeeming a Registration Code in the shopping cart, the user should be redirect to the Registration Code Redemption page","distinct":true,"url":"https://api.github.com/repos/edx/edx-platform/commits/91a4796216b1aa5e7fbb2834b80894b93348bf6e"}]},"public":true,"created_at":"2015-01-01T15:00:41Z","org":{"id":3179841,"login":"edx","gravatar_id":"","url":"https://api.github.com/orgs/edx","avatar_url":"https://avatars.githubusercontent.com/u/3179841?"}}
,{"id":"2489651435","type":"WatchEvent","actor":{"id":8445924,"login":"kovetskiy","gravatar_id":"","url":"https://api.github.com/users/kovetskiy","avatar_url":"https://avatars.githubusercontent.com/u/8445924?"},"repo":{"id":15357376,"name":"t9md/vim-choosewin","url":"https://api.github.com/repos/t9md/vim-choosewin"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:00:41Z"}
,{"id":"2489651438","type":"CreateEvent","actor":{"id":5174751,"login":"alviteri","gravatar_id":"","url":"https://api.github.com/users/alviteri","avatar_url":"https://avatars.githubusercontent.com/u/5174751?"},"repo":{"id":26325354,"name":"crdroidandroid/android_packages_apps_Settings","url":"https://api.github.com/repos/crdroidandroid/android_packages_apps_Settings"},"payload":{"ref":"features","ref_type":"branch","master_branch":"cm-12.0","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:00:43Z","org":{"id":9610671,"login":"crdroidandroid","gravatar_id":"","url":"https://api.github.com/orgs/crdroidandroid","avatar_url":"https://avatars.githubusercontent.com/u/9610671?"}}
,{"id":"2489651440","type":"PullRequestEvent","actor":{"id":62572,"login":"markbirbeck","gravatar_id":"","url":"https://api.github.com/users/markbirbeck","avatar_url":"https://avatars.githubusercontent.com/u/62572?"},"repo":{"id":13315164,"name":"markbirbeck/sublime-text-shell-command","url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command"},"payload":{"action":"closed","number":7,"pull_request":{"url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/pulls/7","id":10047845,"html_url":"https://github.com/markbirbeck/sublime-text-shell-command/pull/7","diff_url":"https://github.com/markbirbeck/sublime-text-shell-command/pull/7.diff","patch_url":"https://github.com/markbirbeck/sublime-text-shell-command/pull/7.patch","issue_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/issues/7","number":7,"state":"closed","locked":false,"title":"Feature/add doller variable","user":{"login":"aflc","id":1144478,"avatar_url":"https://avatars.githubusercontent.com/u/1144478?v=3","gravatar_id":"","url":"https://api.github.com/users/aflc","html_url":"https://github.com/aflc","followers_url":"https://api.github.com/users/aflc/followers","following_url":"https://api.github.com/users/aflc/following{/other_user}","gists_url":"https://api.github.com/users/aflc/gists{/gist_id}","starred_url":"https://api.github.com/users/aflc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/aflc/subscriptions","organizations_url":"https://api.github.com/users/aflc/orgs","repos_url":"https://api.github.com/users/aflc/repos","events_url":"https://api.github.com/users/aflc/events{/privacy}","received_events_url":"https://api.github.com/users/aflc/received_events","type":"User","site_admin":false},"body":"Add new class to handle ${...} based variable which User can input with input panel,\r\nor replaced automatically with pre-defined variable (but now implemented `project_folders` and `project_name`)","created_at":"2013-11-18T12:59:21Z","updated_at":"2015-01-01T15:00:42Z","closed_at":"2015-01-01T15:00:42Z","merged_at":null,"merge_commit_sha":"63139a09b34afc2831d146cd664e8447343ccd6d","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/pulls/7/commits","review_comments_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/pulls/7/comments","review_comment_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/pulls/comments/{number}","comments_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/issues/7/comments","statuses_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/statuses/b8bc0288f950667ab214206d1b51098bc5fd9b63","head":{"label":"aflc:feature/add_doller_variable","ref":"feature/add_doller_variable","sha":"b8bc0288f950667ab214206d1b51098bc5fd9b63","user":{"login":"aflc","id":1144478,"avatar_url":"https://avatars.githubusercontent.com/u/1144478?v=3","gravatar_id":"","url":"https://api.github.com/users/aflc","html_url":"https://github.com/aflc","followers_url":"https://api.github.com/users/aflc/followers","following_url":"https://api.github.com/users/aflc/following{/other_user}","gists_url":"https://api.github.com/users/aflc/gists{/gist_id}","starred_url":"https://api.github.com/users/aflc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/aflc/subscriptions","organizations_url":"https://api.github.com/users/aflc/orgs","repos_url":"https://api.github.com/users/aflc/repos","events_url":"https://api.github.com/users/aflc/events{/privacy}","received_events_url":"https://api.github.com/users/aflc/received_events","type":"User","site_admin":false},"repo":{"id":14014485,"name":"sublime-text-shell-command","full_name":"aflc/sublime-text-shell-command","owner":{"login":"aflc","id":1144478,"avatar_url":"https://avatars.githubusercontent.com/u/1144478?v=3","gravatar_id":"","url":"https://api.github.com/users/aflc","html_url":"https://github.com/aflc","followers_url":"https://api.github.com/users/aflc/followers","following_url":"https://api.github.com/users/aflc/following{/other_user}","gists_url":"https://api.github.com/users/aflc/gists{/gist_id}","starred_url":"https://api.github.com/users/aflc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/aflc/subscriptions","organizations_url":"https://api.github.com/users/aflc/orgs","repos_url":"https://api.github.com/users/aflc/repos","events_url":"https://api.github.com/users/aflc/events{/privacy}","received_events_url":"https://api.github.com/users/aflc/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/aflc/sublime-text-shell-command","description":"A Sublime Text 3 plugin for running OS commands.","fork":true,"url":"https://api.github.com/repos/aflc/sublime-text-shell-command","forks_url":"https://api.github.com/repos/aflc/sublime-text-shell-command/forks","keys_url":"https://api.github.com/repos/aflc/sublime-text-shell-command/keys{/key_id}","collaborators_url":"https://api.github.com/repos/aflc/sublime-text-shell-command/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/aflc/sublime-text-shell-command/teams","hooks_url":"https://api.github.com/repos/aflc/sublime-text-shell-command/hooks","issue_events_url":"https://api.github.com/repos/aflc/sublime-text-shell-command/issues/events{/number}","events_url":"https://api.github.com/repos/aflc/sublime-text-shell-command/events","assignees_url":"https://api.github.com/repos/aflc/sublime-text-shell-command/assignees{/user}","branches_url":"https://api.github.com/repos/aflc/sublime-text-shell-command/branches{/branch}","tags_url":"https://api.github.com/repos/aflc/sublime-text-shell-command/tags","blobs_url":"https://api.github.com/repos/aflc/sublime-text-shell-command/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/aflc/sublime-text-shell-command/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/aflc/sublime-text-shell-command/git/refs{/sha}","trees_url":"https://api.github.com/repos/aflc/sublime-text-shell-command/git/trees{/sha}","statuses_url":"https://api.github.com/repos/aflc/sublime-text-shell-command/statuses/{sha}","languages_url":"https://api.github.com/repos/aflc/sublime-text-shell-command/languages","stargazers_url":"https://api.github.com/repos/aflc/sublime-text-shell-command/stargazers","contributors_url":"https://api.github.com/repos/aflc/sublime-text-shell-command/contributors","subscribers_url":"https://api.github.com/repos/aflc/sublime-text-shell-command/subscribers","subscription_url":"https://api.github.com/repos/aflc/sublime-text-shell-command/subscription","commits_url":"https://api.github.com/repos/aflc/sublime-text-shell-command/commits{/sha}","git_commits_url":"https://api.github.com/repos/aflc/sublime-text-shell-command/git/commits{/sha}","comments_url":"https://api.github.com/repos/aflc/sublime-text-shell-command/comments{/number}","issue_comment_url":"https://api.github.com/repos/aflc/sublime-text-shell-command/issues/comments/{number}","contents_url":"https://api.github.com/repos/aflc/sublime-text-shell-command/contents/{+path}","compare_url":"https://api.github.com/repos/aflc/sublime-text-shell-command/compare/{base}...{head}","merges_url":"https://api.github.com/repos/aflc/sublime-text-shell-command/merges","archive_url":"https://api.github.com/repos/aflc/sublime-text-shell-command/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/aflc/sublime-text-shell-command/downloads","issues_url":"https://api.github.com/repos/aflc/sublime-text-shell-command/issues{/number}","pulls_url":"https://api.github.com/repos/aflc/sublime-text-shell-command/pulls{/number}","milestones_url":"https://api.github.com/repos/aflc/sublime-text-shell-command/milestones{/number}","notifications_url":"https://api.github.com/repos/aflc/sublime-text-shell-command/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/aflc/sublime-text-shell-command/labels{/name}","releases_url":"https://api.github.com/repos/aflc/sublime-text-shell-command/releases{/id}","created_at":"2013-10-31T11:00:32Z","updated_at":"2013-11-18T12:59:21Z","pushed_at":"2013-11-18T12:54:59Z","git_url":"git://github.com/aflc/sublime-text-shell-command.git","ssh_url":"git@github.com:aflc/sublime-text-shell-command.git","clone_url":"https://github.com/aflc/sublime-text-shell-command.git","svn_url":"https://github.com/aflc/sublime-text-shell-command","homepage":null,"size":122,"stargazers_count":0,"watchers_count":0,"language":"Python","has_issues":false,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master"}},"base":{"label":"markbirbeck:develop","ref":"develop","sha":"12e46d913747486c2677b1342e7684632c1ff4c7","user":{"login":"markbirbeck","id":62572,"avatar_url":"https://avatars.githubusercontent.com/u/62572?v=3","gravatar_id":"","url":"https://api.github.com/users/markbirbeck","html_url":"https://github.com/markbirbeck","followers_url":"https://api.github.com/users/markbirbeck/followers","following_url":"https://api.github.com/users/markbirbeck/following{/other_user}","gists_url":"https://api.github.com/users/markbirbeck/gists{/gist_id}","starred_url":"https://api.github.com/users/markbirbeck/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/markbirbeck/subscriptions","organizations_url":"https://api.github.com/users/markbirbeck/orgs","repos_url":"https://api.github.com/users/markbirbeck/repos","events_url":"https://api.github.com/users/markbirbeck/events{/privacy}","received_events_url":"https://api.github.com/users/markbirbeck/received_events","type":"User","site_admin":false},"repo":{"id":13315164,"name":"sublime-text-shell-command","full_name":"markbirbeck/sublime-text-shell-command","owner":{"login":"markbirbeck","id":62572,"avatar_url":"https://avatars.githubusercontent.com/u/62572?v=3","gravatar_id":"","url":"https://api.github.com/users/markbirbeck","html_url":"https://github.com/markbirbeck","followers_url":"https://api.github.com/users/markbirbeck/followers","following_url":"https://api.github.com/users/markbirbeck/following{/other_user}","gists_url":"https://api.github.com/users/markbirbeck/gists{/gist_id}","starred_url":"https://api.github.com/users/markbirbeck/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/markbirbeck/subscriptions","organizations_url":"https://api.github.com/users/markbirbeck/orgs","repos_url":"https://api.github.com/users/markbirbeck/repos","events_url":"https://api.github.com/users/markbirbeck/events{/privacy}","received_events_url":"https://api.github.com/users/markbirbeck/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/markbirbeck/sublime-text-shell-command","description":"A Sublime Text 3 plugin for running any Shell command.","fork":false,"url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command","forks_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/forks","keys_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/keys{/key_id}","collaborators_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/teams","hooks_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/hooks","issue_events_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/issues/events{/number}","events_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/events","assignees_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/assignees{/user}","branches_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/branches{/branch}","tags_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/tags","blobs_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/git/refs{/sha}","trees_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/git/trees{/sha}","statuses_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/statuses/{sha}","languages_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/languages","stargazers_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/stargazers","contributors_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/contributors","subscribers_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/subscribers","subscription_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/subscription","commits_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/commits{/sha}","git_commits_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/git/commits{/sha}","comments_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/comments{/number}","issue_comment_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/issues/comments/{number}","contents_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/contents/{+path}","compare_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/compare/{base}...{head}","merges_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/merges","archive_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/downloads","issues_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/issues{/number}","pulls_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/pulls{/number}","milestones_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/milestones{/number}","notifications_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/labels{/name}","releases_url":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/releases{/id}","created_at":"2013-10-04T02:48:38Z","updated_at":"2015-01-01T14:49:26Z","pushed_at":"2015-01-01T14:49:26Z","git_url":"git://github.com/markbirbeck/sublime-text-shell-command.git","ssh_url":"git@github.com:markbirbeck/sublime-text-shell-command.git","clone_url":"https://github.com/markbirbeck/sublime-text-shell-command.git","svn_url":"https://github.com/markbirbeck/sublime-text-shell-command","homepage":"","size":459,"stargazers_count":59,"watchers_count":59,"language":"Python","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":10,"mirror_url":null,"open_issues_count":13,"forks":10,"open_issues":13,"watchers":59,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/pulls/7"},"html":{"href":"https://github.com/markbirbeck/sublime-text-shell-command/pull/7"},"issue":{"href":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/issues/7"},"comments":{"href":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/issues/7/comments"},"review_comments":{"href":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/pulls/7/comments"},"review_comment":{"href":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/pulls/7/commits"},"statuses":{"href":"https://api.github.com/repos/markbirbeck/sublime-text-shell-command/statuses/b8bc0288f950667ab214206d1b51098bc5fd9b63"}},"merged":false,"mergeable":false,"mergeable_state":"dirty","merged_by":null,"comments":1,"review_comments":0,"commits":2,"additions":94,"deletions":1,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:00:43Z"}
,{"id":"2489651443","type":"CreateEvent","actor":{"id":1025765,"login":"craiglockwood","gravatar_id":"","url":"https://api.github.com/users/craiglockwood","avatar_url":"https://avatars.githubusercontent.com/u/1025765?"},"repo":{"id":28688608,"name":"craiglockwood/lardylockwoods","url":"https://api.github.com/repos/craiglockwood/lardylockwoods"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"A simple weight management dashboard for the annual Lockwood diet (uses chart.js)","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:00:43Z"}
,{"id":"2489651444","type":"PushEvent","actor":{"id":3064121,"login":"jingyuan4ever","gravatar_id":"","url":"https://api.github.com/users/jingyuan4ever","avatar_url":"https://avatars.githubusercontent.com/u/3064121?"},"repo":{"id":17544783,"name":"jingyuan4ever/checkio","url":"https://api.github.com/repos/jingyuan4ever/checkio"},"payload":{"push_id":536864167,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"97d8569c48403e93d87fa0d9d6d836261d68a1d6","before":"1a233c9a55d596a1cd9b4306811fb0ae4ab392db","commits":[{"sha":"97d8569c48403e93d87fa0d9d6d836261d68a1d6","author":{"email":"e3f0f858b132ab9a917901df9210f0626834e936@gmail.com","name":"jingyuan4ever"},"message":"add the-great-common-divisor","distinct":true,"url":"https://api.github.com/repos/jingyuan4ever/checkio/commits/97d8569c48403e93d87fa0d9d6d836261d68a1d6"}]},"public":true,"created_at":"2015-01-01T15:00:43Z"}
,{"id":"2489651445","type":"PushEvent","actor":{"id":4726466,"login":"sharonadar","gravatar_id":"","url":"https://api.github.com/users/sharonadar","avatar_url":"https://avatars.githubusercontent.com/u/4726466?"},"repo":{"id":11364783,"name":"kaltura/server","url":"https://api.github.com/repos/kaltura/server"},"payload":{"push_id":536864166,"size":1,"distinct_size":1,"ref":"refs/heads/Jupiter-10.2.0-PLAT-2032","head":"a78a0479f2e3c7642796c29292380db53bd5f197","before":"fdb3baa71775d9e69a849af1590f70b32b0bacbb","commits":[{"sha":"a78a0479f2e3c7642796c29292380db53bd5f197","author":{"email":"ad7c84f63a6190abf0df51576bab926e84456593@gmail.com","name":"sharonadar"},"message":"Missing files...","distinct":true,"url":"https://api.github.com/repos/kaltura/server/commits/a78a0479f2e3c7642796c29292380db53bd5f197"}]},"public":true,"created_at":"2015-01-01T15:00:43Z","org":{"id":319096,"login":"kaltura","gravatar_id":"","url":"https://api.github.com/orgs/kaltura","avatar_url":"https://avatars.githubusercontent.com/u/319096?"}}
,{"id":"2489651446","type":"IssueCommentEvent","actor":{"id":1392109,"login":"parubets","gravatar_id":"","url":"https://api.github.com/users/parubets","avatar_url":"https://avatars.githubusercontent.com/u/1392109?"},"repo":{"id":15259244,"name":"bitpay/bitcore","url":"https://api.github.com/repos/bitpay/bitcore"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/bitpay/bitcore/issues/860","labels_url":"https://api.github.com/repos/bitpay/bitcore/issues/860/labels{/name}","comments_url":"https://api.github.com/repos/bitpay/bitcore/issues/860/comments","events_url":"https://api.github.com/repos/bitpay/bitcore/issues/860/events","html_url":"https://github.com/bitpay/bitcore/issues/860","id":52934239,"number":860,"title":"bip32 compliance","user":{"login":"parubets","id":1392109,"avatar_url":"https://avatars.githubusercontent.com/u/1392109?v=3","gravatar_id":"","url":"https://api.github.com/users/parubets","html_url":"https://github.com/parubets","followers_url":"https://api.github.com/users/parubets/followers","following_url":"https://api.github.com/users/parubets/following{/other_user}","gists_url":"https://api.github.com/users/parubets/gists{/gist_id}","starred_url":"https://api.github.com/users/parubets/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/parubets/subscriptions","organizations_url":"https://api.github.com/users/parubets/orgs","repos_url":"https://api.github.com/users/parubets/repos","events_url":"https://api.github.com/users/parubets/events{/privacy}","received_events_url":"https://api.github.com/users/parubets/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":3,"created_at":"2014-12-26T18:21:53Z","updated_at":"2015-01-01T15:00:43Z","closed_at":"2015-01-01T15:00:43Z","body":"Hi guys,\r\n\r\nI'm fighting with bip32 keys derive, and what i get from browser output doesn't equal to bitcore test suite or bip32 test vectors.\r\nBrowser output:\r\n\r\n```\r\nbitcore.HDPrivateKey.fromSeed('000102030405060708090a0b0c0d0e0f').derive(\"m/0'\").xprivkey\r\n\"xprv9wTYmMFdV23MzHB1Z9SQKteo9xo9v1mm5gRdZGEUPy9t79fj3cRY3pdncVv6a7o5TMv76KuWezzEAw7CAwjXwrH5a9EzdgmNVo7wgWN1yEs\"\r\n```\r\n\r\nthe resulted key is wrong...\r\n\r\nif i test in ruby, i got correct result (which is also correct in bitcore testsuite)\r\n\r\n```\r\n2.0.0-p576 :049 > MoneyTree::Master.new(seed_hex: \"000102030405060708090a0b0c0d0e0f\").node_for_path(\"m/0'\").to_serialized_address(:private)\r\n => \"xprv9uHRZZhk6KAJC1avXpDAp4MDc3sQKNxDiPvvkX8Br5ngLNv1TxvUxt4cV1rGL5hj6KCesnDYUhd7oWgT11eZG7XnxHrnYeSvkzY7d2bhkJ7\"\r\n```\r\n\r\nwhat i'm doing wrong?\r\n\r\nthank you!"},"comment":{"url":"https://api.github.com/repos/bitpay/bitcore/issues/comments/68488504","html_url":"https://github.com/bitpay/bitcore/issues/860#issuecomment-68488504","issue_url":"https://api.github.com/repos/bitpay/bitcore/issues/860","id":68488504,"user":{"login":"parubets","id":1392109,"avatar_url":"https://avatars.githubusercontent.com/u/1392109?v=3","gravatar_id":"","url":"https://api.github.com/users/parubets","html_url":"https://github.com/parubets","followers_url":"https://api.github.com/users/parubets/followers","following_url":"https://api.github.com/users/parubets/following{/other_user}","gists_url":"https://api.github.com/users/parubets/gists{/gist_id}","starred_url":"https://api.github.com/users/parubets/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/parubets/subscriptions","organizations_url":"https://api.github.com/users/parubets/orgs","repos_url":"https://api.github.com/users/parubets/repos","events_url":"https://api.github.com/users/parubets/events{/privacy}","received_events_url":"https://api.github.com/users/parubets/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:00:43Z","updated_at":"2015-01-01T15:00:43Z","body":"Hi!\r\n\r\nThanks for your reply... I found the error - it was in the jsqrcode library, they added prototype function to Array class... after removing it - everything works fine!\r\n\r\nThanks!"}},"public":true,"created_at":"2015-01-01T15:00:43Z","org":{"id":2554930,"login":"bitpay","gravatar_id":"","url":"https://api.github.com/orgs/bitpay","avatar_url":"https://avatars.githubusercontent.com/u/2554930?"}}
,{"id":"2489651448","type":"IssuesEvent","actor":{"id":1392109,"login":"parubets","gravatar_id":"","url":"https://api.github.com/users/parubets","avatar_url":"https://avatars.githubusercontent.com/u/1392109?"},"repo":{"id":15259244,"name":"bitpay/bitcore","url":"https://api.github.com/repos/bitpay/bitcore"},"payload":{"action":"closed","issue":{"url":"https://api.github.com/repos/bitpay/bitcore/issues/860","labels_url":"https://api.github.com/repos/bitpay/bitcore/issues/860/labels{/name}","comments_url":"https://api.github.com/repos/bitpay/bitcore/issues/860/comments","events_url":"https://api.github.com/repos/bitpay/bitcore/issues/860/events","html_url":"https://github.com/bitpay/bitcore/issues/860","id":52934239,"number":860,"title":"bip32 compliance","user":{"login":"parubets","id":1392109,"avatar_url":"https://avatars.githubusercontent.com/u/1392109?v=3","gravatar_id":"","url":"https://api.github.com/users/parubets","html_url":"https://github.com/parubets","followers_url":"https://api.github.com/users/parubets/followers","following_url":"https://api.github.com/users/parubets/following{/other_user}","gists_url":"https://api.github.com/users/parubets/gists{/gist_id}","starred_url":"https://api.github.com/users/parubets/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/parubets/subscriptions","organizations_url":"https://api.github.com/users/parubets/orgs","repos_url":"https://api.github.com/users/parubets/repos","events_url":"https://api.github.com/users/parubets/events{/privacy}","received_events_url":"https://api.github.com/users/parubets/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":3,"created_at":"2014-12-26T18:21:53Z","updated_at":"2015-01-01T15:00:43Z","closed_at":"2015-01-01T15:00:43Z","body":"Hi guys,\r\n\r\nI'm fighting with bip32 keys derive, and what i get from browser output doesn't equal to bitcore test suite or bip32 test vectors.\r\nBrowser output:\r\n\r\n```\r\nbitcore.HDPrivateKey.fromSeed('000102030405060708090a0b0c0d0e0f').derive(\"m/0'\").xprivkey\r\n\"xprv9wTYmMFdV23MzHB1Z9SQKteo9xo9v1mm5gRdZGEUPy9t79fj3cRY3pdncVv6a7o5TMv76KuWezzEAw7CAwjXwrH5a9EzdgmNVo7wgWN1yEs\"\r\n```\r\n\r\nthe resulted key is wrong...\r\n\r\nif i test in ruby, i got correct result (which is also correct in bitcore testsuite)\r\n\r\n```\r\n2.0.0-p576 :049 > MoneyTree::Master.new(seed_hex: \"000102030405060708090a0b0c0d0e0f\").node_for_path(\"m/0'\").to_serialized_address(:private)\r\n => \"xprv9uHRZZhk6KAJC1avXpDAp4MDc3sQKNxDiPvvkX8Br5ngLNv1TxvUxt4cV1rGL5hj6KCesnDYUhd7oWgT11eZG7XnxHrnYeSvkzY7d2bhkJ7\"\r\n```\r\n\r\nwhat i'm doing wrong?\r\n\r\nthank you!"}},"public":true,"created_at":"2015-01-01T15:00:44Z","org":{"id":2554930,"login":"bitpay","gravatar_id":"","url":"https://api.github.com/orgs/bitpay","avatar_url":"https://avatars.githubusercontent.com/u/2554930?"}}
,{"id":"2489651451","type":"PushEvent","actor":{"id":5181913,"login":"eclecticlogic","gravatar_id":"","url":"https://api.github.com/users/eclecticlogic","avatar_url":"https://avatars.githubusercontent.com/u/5181913?"},"repo":{"id":28636767,"name":"eclecticlogic/pedal-loader","url":"https://api.github.com/repos/eclecticlogic/pedal-loader"},"payload":{"push_id":536864168,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"866757088a45bbdea0d93fe05efefd642d432816","before":"745a502dce9023e92329f548fe5746e99e290988","commits":[{"sha":"866757088a45bbdea0d93fe05efefd642d432816","author":{"email":"cb4abed6c07c79e2deeb7d5895ddc855894ab403@eclecticlogic.com","name":"Karthik Abram"},"message":"added more documentation.","distinct":true,"url":"https://api.github.com/repos/eclecticlogic/pedal-loader/commits/866757088a45bbdea0d93fe05efefd642d432816"}]},"public":true,"created_at":"2015-01-01T15:00:44Z"}
,{"id":"2489651455","type":"IssueCommentEvent","actor":{"id":189796,"login":"cebe","gravatar_id":"","url":"https://api.github.com/users/cebe","avatar_url":"https://avatars.githubusercontent.com/u/189796?"},"repo":{"id":28057858,"name":"samdark/yiifeed","url":"https://api.github.com/repos/samdark/yiifeed"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/samdark/yiifeed/issues/5","labels_url":"https://api.github.com/repos/samdark/yiifeed/issues/5/labels{/name}","comments_url":"https://api.github.com/repos/samdark/yiifeed/issues/5/comments","events_url":"https://api.github.com/repos/samdark/yiifeed/issues/5/events","html_url":"https://github.com/samdark/yiifeed/issues/5","id":53004212,"number":5,"title":"yiifeed.com does not resolve in DNS","user":{"login":"cebe","id":189796,"avatar_url":"https://avatars.githubusercontent.com/u/189796?v=3","gravatar_id":"","url":"https://api.github.com/users/cebe","html_url":"https://github.com/cebe","followers_url":"https://api.github.com/users/cebe/followers","following_url":"https://api.github.com/users/cebe/following{/other_user}","gists_url":"https://api.github.com/users/cebe/gists{/gist_id}","starred_url":"https://api.github.com/users/cebe/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cebe/subscriptions","organizations_url":"https://api.github.com/users/cebe/orgs","repos_url":"https://api.github.com/users/cebe/repos","events_url":"https://api.github.com/users/cebe/events{/privacy}","received_events_url":"https://api.github.com/users/cebe/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/samdark/yiifeed/labels/bug","name":"bug","color":"fc2929"}],"state":"closed","locked":false,"assignee":{"login":"samdark","id":47294,"avatar_url":"https://avatars.githubusercontent.com/u/47294?v=3","gravatar_id":"","url":"https://api.github.com/users/samdark","html_url":"https://github.com/samdark","followers_url":"https://api.github.com/users/samdark/followers","following_url":"https://api.github.com/users/samdark/following{/other_user}","gists_url":"https://api.github.com/users/samdark/gists{/gist_id}","starred_url":"https://api.github.com/users/samdark/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/samdark/subscriptions","organizations_url":"https://api.github.com/users/samdark/orgs","repos_url":"https://api.github.com/users/samdark/repos","events_url":"https://api.github.com/users/samdark/events{/privacy}","received_events_url":"https://api.github.com/users/samdark/received_events","type":"User","site_admin":false},"milestone":null,"comments":4,"created_at":"2014-12-28T16:37:30Z","updated_at":"2015-01-01T15:00:46Z","closed_at":"2014-12-31T18:11:52Z","body":"```\r\n$ dig yiifeed.com @8.8.8.8\r\n\r\n; <<>> DiG 9.8.4-rpz2+rl005.12-P1 <<>> yiifeed.com @8.8.8.8\r\n;; global options: +cmd\r\n;; Got answer:\r\n;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 52689\r\n;; flags: qr rd ra; QUERY: 1, ANSWER: 0, AUTHORITY: 0, ADDITIONAL: 0\r\n\r\n;; QUESTION SECTION:\r\n;yiifeed.com.\t\t\tIN\tA\r\n\r\n;; Query time: 221 msec\r\n;; SERVER: 8.8.8.8#53(8.8.8.8)\r\n;; WHEN: Sun Dec 28 17:34:07 2014\r\n;; MSG SIZE rcvd: 29\r\n```"},"comment":{"url":"https://api.github.com/repos/samdark/yiifeed/issues/comments/68488506","html_url":"https://github.com/samdark/yiifeed/issues/5#issuecomment-68488506","issue_url":"https://api.github.com/repos/samdark/yiifeed/issues/5","id":68488506,"user":{"login":"cebe","id":189796,"avatar_url":"https://avatars.githubusercontent.com/u/189796?v=3","gravatar_id":"","url":"https://api.github.com/users/cebe","html_url":"https://github.com/cebe","followers_url":"https://api.github.com/users/cebe/followers","following_url":"https://api.github.com/users/cebe/following{/other_user}","gists_url":"https://api.github.com/users/cebe/gists{/gist_id}","starred_url":"https://api.github.com/users/cebe/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cebe/subscriptions","organizations_url":"https://api.github.com/users/cebe/orgs","repos_url":"https://api.github.com/users/cebe/repos","events_url":"https://api.github.com/users/cebe/events{/privacy}","received_events_url":"https://api.github.com/users/cebe/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:00:46Z","updated_at":"2015-01-01T15:00:46Z","body":"it is working now."}},"public":true,"created_at":"2015-01-01T15:00:46Z"}
,{"id":"2489651456","type":"IssueCommentEvent","actor":{"id":4566,"login":"nathany","gravatar_id":"","url":"https://api.github.com/users/nathany","avatar_url":"https://avatars.githubusercontent.com/u/4566?"},"repo":{"id":11180687,"name":"spf13/hugo","url":"https://api.github.com/repos/spf13/hugo"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/spf13/hugo/issues/758","labels_url":"https://api.github.com/repos/spf13/hugo/issues/758/labels{/name}","comments_url":"https://api.github.com/repos/spf13/hugo/issues/758/comments","events_url":"https://api.github.com/repos/spf13/hugo/issues/758/events","html_url":"https://github.com/spf13/hugo/issues/758","id":53213403,"number":758,"title":"https protocol used with localhost","user":{"login":"nathany","id":4566,"avatar_url":"https://avatars.githubusercontent.com/u/4566?v=3","gravatar_id":"","url":"https://api.github.com/users/nathany","html_url":"https://github.com/nathany","followers_url":"https://api.github.com/users/nathany/followers","following_url":"https://api.github.com/users/nathany/following{/other_user}","gists_url":"https://api.github.com/users/nathany/gists{/gist_id}","starred_url":"https://api.github.com/users/nathany/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/nathany/subscriptions","organizations_url":"https://api.github.com/users/nathany/orgs","repos_url":"https://api.github.com/users/nathany/repos","events_url":"https://api.github.com/users/nathany/events{/privacy}","received_events_url":"https://api.github.com/users/nathany/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":5,"created_at":"2015-01-01T05:32:39Z","updated_at":"2015-01-01T15:00:45Z","closed_at":null,"body":"As @andrelima [mentioned here](https://github.com/spf13/hugo/issues/544#issuecomment-58817004):\r\n\r\n`{{ .Site.BaseUrl }}` results in `https://localhost:1313/` if the baseurl defined in config uses https.\r\n\r\nIn this case it probably makes sense to override the protocol to http along with the host.\r\n\r\nA work around (in some cases) is just to use relative paths instead of `{{ .Site.BaseUrl }}`.\r\n\r\nI just upgraded hugo to latest (fb1b795d59b3c6d5d74df3a69b4026574b6dd5fa) and this issue remains."},"comment":{"url":"https://api.github.com/repos/spf13/hugo/issues/comments/68488505","html_url":"https://github.com/spf13/hugo/issues/758#issuecomment-68488505","issue_url":"https://api.github.com/repos/spf13/hugo/issues/758","id":68488505,"user":{"login":"nathany","id":4566,"avatar_url":"https://avatars.githubusercontent.com/u/4566?v=3","gravatar_id":"","url":"https://api.github.com/users/nathany","html_url":"https://github.com/nathany","followers_url":"https://api.github.com/users/nathany/followers","following_url":"https://api.github.com/users/nathany/following{/other_user}","gists_url":"https://api.github.com/users/nathany/gists{/gist_id}","starred_url":"https://api.github.com/users/nathany/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/nathany/subscriptions","organizations_url":"https://api.github.com/users/nathany/orgs","repos_url":"https://api.github.com/users/nathany/repos","events_url":"https://api.github.com/users/nathany/events{/privacy}","received_events_url":"https://api.github.com/users/nathany/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:00:45Z","updated_at":"2015-01-01T15:00:45Z","body":"I can write up a patch and see what happens.\r\n\r\nPersonally I don't see any reason to run the Hugo server securely during development. There's hardly any reason to run a static site securely in production. Perhaps the occasional mailing list signup, maybe a bit of PageRank, and to prevent ISP-injected garbage. Mostly I'd just like more of the web to be secure, so I'm trying to set a good example. :grinning: \r\n\r\n@dsimmons Interesting setup. I contemplated CloudFlare but didn't really want to change my DNS provider. I've been using S3 as an website origin (which doesn't support HTTPS) with CloudFront and a custom cert. I'm not entirely in love with the setup, mainly cache invalidation.\r\n"}},"public":true,"created_at":"2015-01-01T15:00:46Z"}
,{"id":"2489651460","type":"CreateEvent","actor":{"id":6561166,"login":"PLMbugz","gravatar_id":"","url":"https://api.github.com/users/PLMbugz","avatar_url":"https://avatars.githubusercontent.com/u/6561166?"},"repo":{"id":22066165,"name":"mquinson/PLM-data","url":"https://api.github.com/repos/mquinson/PLM-data"},"payload":{"ref":"PLM88a35b5297c85b6812de5d1f0ba423a5a0bb790b","ref_type":"branch","master_branch":"master","description":"Anonymous code uploaded by the PLM clients","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:00:46Z"}
,{"id":"2489651461","type":"PushEvent","actor":{"id":424724,"login":"dezelin","gravatar_id":"","url":"https://api.github.com/users/dezelin","avatar_url":"https://avatars.githubusercontent.com/u/424724?"},"repo":{"id":28683833,"name":"dezelin/Timetable","url":"https://api.github.com/repos/dezelin/Timetable"},"payload":{"push_id":536864173,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"6e280f6b6e45eb19af38b07b17dd9b7f97ff87ad","before":"e66aab97a3671d748d2b233dffb6c01c64d407b9","commits":[{"sha":"6e280f6b6e45eb19af38b07b17dd9b7f97ff87ad","author":{"email":"9576f8760ba70773cbd6b2f7999c3b70fa9040cb@gmail.com","name":"Aleksandar Dezelin"},"message":"Skip connectedCheck for glass project. Fix in .travis.yml.\n There is no Glass emulator currently available.","distinct":true,"url":"https://api.github.com/repos/dezelin/Timetable/commits/6e280f6b6e45eb19af38b07b17dd9b7f97ff87ad"}]},"public":true,"created_at":"2015-01-01T15:00:46Z"}
,{"id":"2489651462","type":"CreateEvent","actor":{"id":5462203,"login":"StartEnd","gravatar_id":"","url":"https://api.github.com/users/StartEnd","avatar_url":"https://avatars.githubusercontent.com/u/5462203?"},"repo":{"id":28688609,"name":"StartEnd/codeDemo","url":"https://api.github.com/repos/StartEnd/codeDemo"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"记录每日练习代码","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:00:48Z"}
,{"id":"2489651473","type":"PushEvent","actor":{"id":1144873,"login":"greysteil","gravatar_id":"","url":"https://api.github.com/users/greysteil","avatar_url":"https://avatars.githubusercontent.com/u/1144873?"},"repo":{"id":28648149,"name":"gocardless/activejob-retry","url":"https://api.github.com/repos/gocardless/activejob-retry"},"payload":{"push_id":536864176,"size":1,"distinct_size":1,"ref":"refs/heads/check-adapter-supported","head":"f95beaa7e5f3ed25a33798ca90dacc9d6dc21c51","before":"cdb41f8d903287ad56248d408ead0e10f1cb44cd","commits":[{"sha":"f95beaa7e5f3ed25a33798ca90dacc9d6dc21c51","author":{"email":"b94ddd941335d400b73cc82065f083528f99eb9f@gmail.com","name":"Grey Baker"},"message":"Check adapter is supported","distinct":true,"url":"https://api.github.com/repos/gocardless/activejob-retry/commits/f95beaa7e5f3ed25a33798ca90dacc9d6dc21c51"}]},"public":true,"created_at":"2015-01-01T15:00:48Z","org":{"id":790629,"login":"gocardless","gravatar_id":"","url":"https://api.github.com/orgs/gocardless","avatar_url":"https://avatars.githubusercontent.com/u/790629?"}}
,{"id":"2489651475","type":"PushEvent","actor":{"id":3990482,"login":"rosbuild","gravatar_id":"","url":"https://api.github.com/users/rosbuild","avatar_url":"https://avatars.githubusercontent.com/u/3990482?"},"repo":{"id":14125815,"name":"osrf/www.ros.org","url":"https://api.github.com/repos/osrf/www.ros.org"},"payload":{"push_id":536864177,"size":1,"distinct_size":1,"ref":"refs/heads/wordpressdb","head":"5774257a65c086d139fc58c74e79871b809d258a","before":"5b9f67b956bdbacbcaebba94d09df5cd2513c7f8","commits":[{"sha":"5774257a65c086d139fc58c74e79871b809d258a","author":{"email":"c2678b3531040209f84244ce8534556c3494c8b3@osrfoundation.org","name":"Your Name"},"message":"automatic db update","distinct":true,"url":"https://api.github.com/repos/osrf/www.ros.org/commits/5774257a65c086d139fc58c74e79871b809d258a"}]},"public":true,"created_at":"2015-01-01T15:00:48Z","org":{"id":3999730,"login":"osrf","gravatar_id":"","url":"https://api.github.com/orgs/osrf","avatar_url":"https://avatars.githubusercontent.com/u/3999730?"}}
,{"id":"2489651476","type":"PushEvent","actor":{"id":2713846,"login":"Valicek1","gravatar_id":"","url":"https://api.github.com/users/Valicek1","avatar_url":"https://avatars.githubusercontent.com/u/2713846?"},"repo":{"id":28660348,"name":"fpc-svn/lazarus","url":"https://api.github.com/repos/fpc-svn/lazarus"},"payload":{"push_id":536864178,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"91fb02e5a875f4d7f72fede16a165cf528c7ef6a","before":"5276743d3c97ce0428438eef95cffba39357d00b","commits":[{"sha":"91fb02e5a875f4d7f72fede16a165cf528c7ef6a","author":{"email":"9e2282b90ff89d0d1e4630c2f585c6220d1db1bc@4005530d-fff6-0310-9dd1-cebe43e6787f","name":"joost"},"message":"fpmake: Search in all available packages for packages with the LazarusDsgnPkg flag. Include those packages in the ide using staticpackages.inc\n\ngit-svn-id: http://svn.freepascal.org/svn/lazarus/trunk@47277 4005530d-fff6-0310-9dd1-cebe43e6787f","distinct":true,"url":"https://api.github.com/repos/fpc-svn/lazarus/commits/91fb02e5a875f4d7f72fede16a165cf528c7ef6a"}]},"public":true,"created_at":"2015-01-01T15:00:48Z","org":{"id":7508884,"login":"fpc-svn","gravatar_id":"","url":"https://api.github.com/orgs/fpc-svn","avatar_url":"https://avatars.githubusercontent.com/u/7508884?"}}
,{"id":"2489651482","type":"PushEvent","actor":{"id":7102537,"login":"wrldwzrd89","gravatar_id":"","url":"https://api.github.com/users/wrldwzrd89","avatar_url":"https://avatars.githubusercontent.com/u/7102537?"},"repo":{"id":28007183,"name":"wrldwzrd89/mazer-5d","url":"https://api.github.com/repos/wrldwzrd89/mazer-5d"},"payload":{"push_id":536864181,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"79e215369b1374d0bd17f8d7b2308930c171b7d6","before":"579df4ee4becc50ca022bdcbdafdd723e2d8b670","commits":[{"sha":"79e215369b1374d0bd17f8d7b2308930c171b7d6","author":{"email":"553d5f2f16f33fec8f737e36baaed09e6262e5ef@puttysoftware.com","name":"wrldwzrd89"},"message":"Support paint mode in the editor.","distinct":true,"url":"https://api.github.com/repos/wrldwzrd89/mazer-5d/commits/79e215369b1374d0bd17f8d7b2308930c171b7d6"}]},"public":true,"created_at":"2015-01-01T15:00:49Z"}
,{"id":"2489651483","type":"PullRequestReviewCommentEvent","actor":{"id":10357835,"login":"mevlan","gravatar_id":"","url":"https://api.github.com/users/mevlan","avatar_url":"https://avatars.githubusercontent.com/u/10357835?"},"repo":{"id":28668460,"name":"mevlan/script","url":"https://api.github.com/repos/mevlan/script"},"payload":{"action":"created","comment":{"url":"https://api.github.com/repos/mevlan/script/pulls/comments/22400085","id":22400085,"diff_hunk":"@@ -7,3 +7,6 @@\n print '2015'\n def newFunc():\n \tpass\n+","path":"loop.py","position":4,"original_position":4,"commit_id":"fecf568375c53fd0bf03eb4e81c821214077f41c","original_commit_id":"fecf568375c53fd0bf03eb4e81c821214077f41c","user":{"login":"mevlan","id":10357835,"avatar_url":"https://avatars.githubusercontent.com/u/10357835?v=3","gravatar_id":"","url":"https://api.github.com/users/mevlan","html_url":"https://github.com/mevlan","followers_url":"https://api.github.com/users/mevlan/followers","following_url":"https://api.github.com/users/mevlan/following{/other_user}","gists_url":"https://api.github.com/users/mevlan/gists{/gist_id}","starred_url":"https://api.github.com/users/mevlan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mevlan/subscriptions","organizations_url":"https://api.github.com/users/mevlan/orgs","repos_url":"https://api.github.com/users/mevlan/repos","events_url":"https://api.github.com/users/mevlan/events{/privacy}","received_events_url":"https://api.github.com/users/mevlan/received_events","type":"User","site_admin":false},"body":"remove white space","created_at":"2015-01-01T15:00:49Z","updated_at":"2015-01-01T15:00:49Z","html_url":"https://github.com/mevlan/script/pull/3#discussion_r22400085","pull_request_url":"https://api.github.com/repos/mevlan/script/pulls/3","_links":{"self":{"href":"https://api.github.com/repos/mevlan/script/pulls/comments/22400085"},"html":{"href":"https://github.com/mevlan/script/pull/3#discussion_r22400085"},"pull_request":{"href":"https://api.github.com/repos/mevlan/script/pulls/3"}}},"pull_request":{"url":"https://api.github.com/repos/mevlan/script/pulls/3","id":26743766,"html_url":"https://github.com/mevlan/script/pull/3","diff_url":"https://github.com/mevlan/script/pull/3.diff","patch_url":"https://github.com/mevlan/script/pull/3.patch","issue_url":"https://api.github.com/repos/mevlan/script/issues/3","number":3,"state":"open","locked":false,"title":"final function","user":{"login":"mevlan","id":10357835,"avatar_url":"https://avatars.githubusercontent.com/u/10357835?v=3","gravatar_id":"","url":"https://api.github.com/users/mevlan","html_url":"https://github.com/mevlan","followers_url":"https://api.github.com/users/mevlan/followers","following_url":"https://api.github.com/users/mevlan/following{/other_user}","gists_url":"https://api.github.com/users/mevlan/gists{/gist_id}","starred_url":"https://api.github.com/users/mevlan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mevlan/subscriptions","organizations_url":"https://api.github.com/users/mevlan/orgs","repos_url":"https://api.github.com/users/mevlan/repos","events_url":"https://api.github.com/users/mevlan/events{/privacy}","received_events_url":"https://api.github.com/users/mevlan/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:00:07Z","updated_at":"2015-01-01T15:00:49Z","closed_at":null,"merged_at":null,"merge_commit_sha":"4833038a845b112cd85cb3ee029c6f8ee4cda756","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/mevlan/script/pulls/3/commits","review_comments_url":"https://api.github.com/repos/mevlan/script/pulls/3/comments","review_comment_url":"https://api.github.com/repos/mevlan/script/pulls/comments/{number}","comments_url":"https://api.github.com/repos/mevlan/script/issues/3/comments","statuses_url":"https://api.github.com/repos/mevlan/script/statuses/fecf568375c53fd0bf03eb4e81c821214077f41c","head":{"label":"mevlan:final","ref":"final","sha":"fecf568375c53fd0bf03eb4e81c821214077f41c","user":{"login":"mevlan","id":10357835,"avatar_url":"https://avatars.githubusercontent.com/u/10357835?v=3","gravatar_id":"","url":"https://api.github.com/users/mevlan","html_url":"https://github.com/mevlan","followers_url":"https://api.github.com/users/mevlan/followers","following_url":"https://api.github.com/users/mevlan/following{/other_user}","gists_url":"https://api.github.com/users/mevlan/gists{/gist_id}","starred_url":"https://api.github.com/users/mevlan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mevlan/subscriptions","organizations_url":"https://api.github.com/users/mevlan/orgs","repos_url":"https://api.github.com/users/mevlan/repos","events_url":"https://api.github.com/users/mevlan/events{/privacy}","received_events_url":"https://api.github.com/users/mevlan/received_events","type":"User","site_admin":false},"repo":{"id":28668460,"name":"script","full_name":"mevlan/script","owner":{"login":"mevlan","id":10357835,"avatar_url":"https://avatars.githubusercontent.com/u/10357835?v=3","gravatar_id":"","url":"https://api.github.com/users/mevlan","html_url":"https://github.com/mevlan","followers_url":"https://api.github.com/users/mevlan/followers","following_url":"https://api.github.com/users/mevlan/following{/other_user}","gists_url":"https://api.github.com/users/mevlan/gists{/gist_id}","starred_url":"https://api.github.com/users/mevlan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mevlan/subscriptions","organizations_url":"https://api.github.com/users/mevlan/orgs","repos_url":"https://api.github.com/users/mevlan/repos","events_url":"https://api.github.com/users/mevlan/events{/privacy}","received_events_url":"https://api.github.com/users/mevlan/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/mevlan/script","description":"","fork":false,"url":"https://api.github.com/repos/mevlan/script","forks_url":"https://api.github.com/repos/mevlan/script/forks","keys_url":"https://api.github.com/repos/mevlan/script/keys{/key_id}","collaborators_url":"https://api.github.com/repos/mevlan/script/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/mevlan/script/teams","hooks_url":"https://api.github.com/repos/mevlan/script/hooks","issue_events_url":"https://api.github.com/repos/mevlan/script/issues/events{/number}","events_url":"https://api.github.com/repos/mevlan/script/events","assignees_url":"https://api.github.com/repos/mevlan/script/assignees{/user}","branches_url":"https://api.github.com/repos/mevlan/script/branches{/branch}","tags_url":"https://api.github.com/repos/mevlan/script/tags","blobs_url":"https://api.github.com/repos/mevlan/script/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/mevlan/script/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/mevlan/script/git/refs{/sha}","trees_url":"https://api.github.com/repos/mevlan/script/git/trees{/sha}","statuses_url":"https://api.github.com/repos/mevlan/script/statuses/{sha}","languages_url":"https://api.github.com/repos/mevlan/script/languages","stargazers_url":"https://api.github.com/repos/mevlan/script/stargazers","contributors_url":"https://api.github.com/repos/mevlan/script/contributors","subscribers_url":"https://api.github.com/repos/mevlan/script/subscribers","subscription_url":"https://api.github.com/repos/mevlan/script/subscription","commits_url":"https://api.github.com/repos/mevlan/script/commits{/sha}","git_commits_url":"https://api.github.com/repos/mevlan/script/git/commits{/sha}","comments_url":"https://api.github.com/repos/mevlan/script/comments{/number}","issue_comment_url":"https://api.github.com/repos/mevlan/script/issues/comments/{number}","contents_url":"https://api.github.com/repos/mevlan/script/contents/{+path}","compare_url":"https://api.github.com/repos/mevlan/script/compare/{base}...{head}","merges_url":"https://api.github.com/repos/mevlan/script/merges","archive_url":"https://api.github.com/repos/mevlan/script/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/mevlan/script/downloads","issues_url":"https://api.github.com/repos/mevlan/script/issues{/number}","pulls_url":"https://api.github.com/repos/mevlan/script/pulls{/number}","milestones_url":"https://api.github.com/repos/mevlan/script/milestones{/number}","notifications_url":"https://api.github.com/repos/mevlan/script/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/mevlan/script/labels{/name}","releases_url":"https://api.github.com/repos/mevlan/script/releases{/id}","created_at":"2014-12-31T15:07:24Z","updated_at":"2015-01-01T13:45:43Z","pushed_at":"2015-01-01T14:59:30Z","git_url":"git://github.com/mevlan/script.git","ssh_url":"git@github.com:mevlan/script.git","clone_url":"https://github.com/mevlan/script.git","svn_url":"https://github.com/mevlan/script","homepage":null,"size":0,"stargazers_count":0,"watchers_count":0,"language":"Python","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":1,"forks":0,"open_issues":1,"watchers":0,"default_branch":"master"}},"base":{"label":"mevlan:master","ref":"master","sha":"37c36e72ff50a69ac6158eb9695352a9b14a15f5","user":{"login":"mevlan","id":10357835,"avatar_url":"https://avatars.githubusercontent.com/u/10357835?v=3","gravatar_id":"","url":"https://api.github.com/users/mevlan","html_url":"https://github.com/mevlan","followers_url":"https://api.github.com/users/mevlan/followers","following_url":"https://api.github.com/users/mevlan/following{/other_user}","gists_url":"https://api.github.com/users/mevlan/gists{/gist_id}","starred_url":"https://api.github.com/users/mevlan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mevlan/subscriptions","organizations_url":"https://api.github.com/users/mevlan/orgs","repos_url":"https://api.github.com/users/mevlan/repos","events_url":"https://api.github.com/users/mevlan/events{/privacy}","received_events_url":"https://api.github.com/users/mevlan/received_events","type":"User","site_admin":false},"repo":{"id":28668460,"name":"script","full_name":"mevlan/script","owner":{"login":"mevlan","id":10357835,"avatar_url":"https://avatars.githubusercontent.com/u/10357835?v=3","gravatar_id":"","url":"https://api.github.com/users/mevlan","html_url":"https://github.com/mevlan","followers_url":"https://api.github.com/users/mevlan/followers","following_url":"https://api.github.com/users/mevlan/following{/other_user}","gists_url":"https://api.github.com/users/mevlan/gists{/gist_id}","starred_url":"https://api.github.com/users/mevlan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mevlan/subscriptions","organizations_url":"https://api.github.com/users/mevlan/orgs","repos_url":"https://api.github.com/users/mevlan/repos","events_url":"https://api.github.com/users/mevlan/events{/privacy}","received_events_url":"https://api.github.com/users/mevlan/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/mevlan/script","description":"","fork":false,"url":"https://api.github.com/repos/mevlan/script","forks_url":"https://api.github.com/repos/mevlan/script/forks","keys_url":"https://api.github.com/repos/mevlan/script/keys{/key_id}","collaborators_url":"https://api.github.com/repos/mevlan/script/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/mevlan/script/teams","hooks_url":"https://api.github.com/repos/mevlan/script/hooks","issue_events_url":"https://api.github.com/repos/mevlan/script/issues/events{/number}","events_url":"https://api.github.com/repos/mevlan/script/events","assignees_url":"https://api.github.com/repos/mevlan/script/assignees{/user}","branches_url":"https://api.github.com/repos/mevlan/script/branches{/branch}","tags_url":"https://api.github.com/repos/mevlan/script/tags","blobs_url":"https://api.github.com/repos/mevlan/script/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/mevlan/script/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/mevlan/script/git/refs{/sha}","trees_url":"https://api.github.com/repos/mevlan/script/git/trees{/sha}","statuses_url":"https://api.github.com/repos/mevlan/script/statuses/{sha}","languages_url":"https://api.github.com/repos/mevlan/script/languages","stargazers_url":"https://api.github.com/repos/mevlan/script/stargazers","contributors_url":"https://api.github.com/repos/mevlan/script/contributors","subscribers_url":"https://api.github.com/repos/mevlan/script/subscribers","subscription_url":"https://api.github.com/repos/mevlan/script/subscription","commits_url":"https://api.github.com/repos/mevlan/script/commits{/sha}","git_commits_url":"https://api.github.com/repos/mevlan/script/git/commits{/sha}","comments_url":"https://api.github.com/repos/mevlan/script/comments{/number}","issue_comment_url":"https://api.github.com/repos/mevlan/script/issues/comments/{number}","contents_url":"https://api.github.com/repos/mevlan/script/contents/{+path}","compare_url":"https://api.github.com/repos/mevlan/script/compare/{base}...{head}","merges_url":"https://api.github.com/repos/mevlan/script/merges","archive_url":"https://api.github.com/repos/mevlan/script/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/mevlan/script/downloads","issues_url":"https://api.github.com/repos/mevlan/script/issues{/number}","pulls_url":"https://api.github.com/repos/mevlan/script/pulls{/number}","milestones_url":"https://api.github.com/repos/mevlan/script/milestones{/number}","notifications_url":"https://api.github.com/repos/mevlan/script/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/mevlan/script/labels{/name}","releases_url":"https://api.github.com/repos/mevlan/script/releases{/id}","created_at":"2014-12-31T15:07:24Z","updated_at":"2015-01-01T13:45:43Z","pushed_at":"2015-01-01T14:59:30Z","git_url":"git://github.com/mevlan/script.git","ssh_url":"git@github.com:mevlan/script.git","clone_url":"https://github.com/mevlan/script.git","svn_url":"https://github.com/mevlan/script","homepage":null,"size":0,"stargazers_count":0,"watchers_count":0,"language":"Python","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":1,"forks":0,"open_issues":1,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/mevlan/script/pulls/3"},"html":{"href":"https://github.com/mevlan/script/pull/3"},"issue":{"href":"https://api.github.com/repos/mevlan/script/issues/3"},"comments":{"href":"https://api.github.com/repos/mevlan/script/issues/3/comments"},"review_comments":{"href":"https://api.github.com/repos/mevlan/script/pulls/3/comments"},"review_comment":{"href":"https://api.github.com/repos/mevlan/script/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/mevlan/script/pulls/3/commits"},"statuses":{"href":"https://api.github.com/repos/mevlan/script/statuses/fecf568375c53fd0bf03eb4e81c821214077f41c"}}}},"public":true,"created_at":"2015-01-01T15:00:49Z"}
,{"id":"2489651489","type":"IssueCommentEvent","actor":{"id":31021,"login":"grawity","gravatar_id":"","url":"https://api.github.com/users/grawity","avatar_url":"https://avatars.githubusercontent.com/u/31021?"},"repo":{"id":4342947,"name":"atheme/charybdis","url":"https://api.github.com/repos/atheme/charybdis"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/atheme/charybdis/issues/76","labels_url":"https://api.github.com/repos/atheme/charybdis/issues/76/labels{/name}","comments_url":"https://api.github.com/repos/atheme/charybdis/issues/76/comments","events_url":"https://api.github.com/repos/atheme/charybdis/issues/76/events","html_url":"https://github.com/atheme/charybdis/issues/76","id":53218762,"number":76,"title":"./configure working directory can't be determined","user":{"login":"xnite","id":5316187,"avatar_url":"https://avatars.githubusercontent.com/u/5316187?v=3","gravatar_id":"","url":"https://api.github.com/users/xnite","html_url":"https://github.com/xnite","followers_url":"https://api.github.com/users/xnite/followers","following_url":"https://api.github.com/users/xnite/following{/other_user}","gists_url":"https://api.github.com/users/xnite/gists{/gist_id}","starred_url":"https://api.github.com/users/xnite/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/xnite/subscriptions","organizations_url":"https://api.github.com/users/xnite/orgs","repos_url":"https://api.github.com/users/xnite/repos","events_url":"https://api.github.com/users/xnite/events{/privacy}","received_events_url":"https://api.github.com/users/xnite/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":2,"created_at":"2015-01-01T12:25:41Z","updated_at":"2015-01-01T15:00:50Z","closed_at":null,"body":"Getting this error on ./configure, I've never seen this before, and I'm not sure what to do. The machine is running latest Debian, same configuration as any other machine we have added to our network, so I'm not sure what might have changed to cause this on this machine in comparison with any other machine.\r\n\r\n$ ./configure\r\nconfigure: error: working directory cannot be determined"},"comment":{"url":"https://api.github.com/repos/atheme/charybdis/issues/comments/68488508","html_url":"https://github.com/atheme/charybdis/issues/76#issuecomment-68488508","issue_url":"https://api.github.com/repos/atheme/charybdis/issues/76","id":68488508,"user":{"login":"grawity","id":31021,"avatar_url":"https://avatars.githubusercontent.com/u/31021?v=3","gravatar_id":"","url":"https://api.github.com/users/grawity","html_url":"https://github.com/grawity","followers_url":"https://api.github.com/users/grawity/followers","following_url":"https://api.github.com/users/grawity/following{/other_user}","gists_url":"https://api.github.com/users/grawity/gists{/gist_id}","starred_url":"https://api.github.com/users/grawity/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/grawity/subscriptions","organizations_url":"https://api.github.com/users/grawity/orgs","repos_url":"https://api.github.com/users/grawity/repos","events_url":"https://api.github.com/users/grawity/events{/privacy}","received_events_url":"https://api.github.com/users/grawity/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:00:50Z","updated_at":"2015-01-01T15:00:50Z","body":"Make sure `pwd`, `cd \"$(pwd)\"`, `ls -di .` report correct results."}},"public":true,"created_at":"2015-01-01T15:00:51Z","org":{"id":941247,"login":"atheme","gravatar_id":"","url":"https://api.github.com/orgs/atheme","avatar_url":"https://avatars.githubusercontent.com/u/941247?"}}
,{"id":"2489651491","type":"PushEvent","actor":{"id":1679649,"login":"daviddenton","gravatar_id":"","url":"https://api.github.com/users/daviddenton","avatar_url":"https://avatars.githubusercontent.com/u/1679649?"},"repo":{"id":28445638,"name":"daviddenton/memebot","url":"https://api.github.com/repos/daviddenton/memebot"},"payload":{"push_id":536864183,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"8306d6db56d3752bd85869942cf1d535ad8928e1","before":"99ccb3a84a6c1971cc5b79a576db3186ae9ed011","commits":[{"sha":"8306d6db56d3752bd85869942cf1d535ad8928e1","author":{"email":"dab893115685411e6ac198584f3dcfaecbea5c07@springer.com","name":"david denton"},"message":"dave - added mappings","distinct":true,"url":"https://api.github.com/repos/daviddenton/memebot/commits/8306d6db56d3752bd85869942cf1d535ad8928e1"}]},"public":true,"created_at":"2015-01-01T15:00:51Z"}
,{"id":"2489651493","type":"PushEvent","actor":{"id":1606069,"login":"CatTail","gravatar_id":"","url":"https://api.github.com/users/CatTail","avatar_url":"https://avatars.githubusercontent.com/u/1606069?"},"repo":{"id":25470653,"name":"CatTail/cattail.github.io","url":"https://api.github.com/repos/CatTail/cattail.github.io"},"payload":{"push_id":536864184,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"f80c62a8e497bf7585258209df1f1ee986480321","before":"fa66e4532edab54df74b9cfc54ce367e5e87af04","commits":[{"sha":"251f82daa914ba46e40d65df72aae20994f05c1c","author":{"email":"ec16b02d20102ec999494fba92685951cd710529@gmail.com","name":"zhongchiyu"},"message":"Remove useless disqus comment","distinct":true,"url":"https://api.github.com/repos/CatTail/cattail.github.io/commits/251f82daa914ba46e40d65df72aae20994f05c1c"},{"sha":"f80c62a8e497bf7585258209df1f1ee986480321","author":{"email":"ec16b02d20102ec999494fba92685951cd710529@gmail.com","name":"zhongchiyu"},"message":"Merge branch 'master' of github.com:CatTail/cattail.github.io","distinct":true,"url":"https://api.github.com/repos/CatTail/cattail.github.io/commits/f80c62a8e497bf7585258209df1f1ee986480321"}]},"public":true,"created_at":"2015-01-01T15:00:51Z"}
,{"id":"2489651494","type":"CreateEvent","actor":{"id":5869219,"login":"dacenter","gravatar_id":"","url":"https://api.github.com/users/dacenter","avatar_url":"https://avatars.githubusercontent.com/u/5869219?"},"repo":{"id":28688611,"name":"Realcraft/Realcraft","url":"https://api.github.com/repos/Realcraft/Realcraft"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"Мод, который добавляет в игру максимум реалистичности","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:00:51Z","org":{"id":10364754,"login":"Realcraft","gravatar_id":"","url":"https://api.github.com/orgs/Realcraft","avatar_url":"https://avatars.githubusercontent.com/u/10364754?"}}
,{"id":"2489651497","type":"PullRequestReviewCommentEvent","actor":{"id":406283,"login":"lennart0901","gravatar_id":"","url":"https://api.github.com/users/lennart0901","avatar_url":"https://avatars.githubusercontent.com/u/406283?"},"repo":{"id":1385122,"name":"matplotlib/matplotlib","url":"https://api.github.com/repos/matplotlib/matplotlib"},"payload":{"action":"created","comment":{"url":"https://api.github.com/repos/matplotlib/matplotlib/pulls/comments/22400088","id":22400088,"diff_hunk":"@@ -557,6 +557,9 @@ def draw(self, renderer):\n self._set_gc_clip(gc)\n \n if self._bbox:\n+ self._bbox.update(dict(clip_box=self.clipbox,","path":"lib/matplotlib/text.py","position":4,"original_position":4,"commit_id":"572bc04ef501e7921c66402fa420fde838310528","original_commit_id":"572bc04ef501e7921c66402fa420fde838310528","user":{"login":"lennart0901","id":406283,"avatar_url":"https://avatars.githubusercontent.com/u/406283?v=3","gravatar_id":"","url":"https://api.github.com/users/lennart0901","html_url":"https://github.com/lennart0901","followers_url":"https://api.github.com/users/lennart0901/followers","following_url":"https://api.github.com/users/lennart0901/following{/other_user}","gists_url":"https://api.github.com/users/lennart0901/gists{/gist_id}","starred_url":"https://api.github.com/users/lennart0901/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/lennart0901/subscriptions","organizations_url":"https://api.github.com/users/lennart0901/orgs","repos_url":"https://api.github.com/users/lennart0901/repos","events_url":"https://api.github.com/users/lennart0901/events{/privacy}","received_events_url":"https://api.github.com/users/lennart0901/received_events","type":"User","site_admin":false},"body":"What about making the combined dict a local variable, like\r\n\r\n```\r\nbbox_params = dict(self._bbox, clip_box=self.clipbox, ...\r\n```\r\n\r\nI'm somehow against syncing some state, that is internal and exactly determined by some other state.","created_at":"2015-01-01T15:00:51Z","updated_at":"2015-01-01T15:00:51Z","html_url":"https://github.com/matplotlib/matplotlib/pull/3676#discussion_r22400088","pull_request_url":"https://api.github.com/repos/matplotlib/matplotlib/pulls/3676","_links":{"self":{"href":"https://api.github.com/repos/matplotlib/matplotlib/pulls/comments/22400088"},"html":{"href":"https://github.com/matplotlib/matplotlib/pull/3676#discussion_r22400088"},"pull_request":{"href":"https://api.github.com/repos/matplotlib/matplotlib/pulls/3676"}}},"pull_request":{"url":"https://api.github.com/repos/matplotlib/matplotlib/pulls/3676","id":22979986,"html_url":"https://github.com/matplotlib/matplotlib/pull/3676","diff_url":"https://github.com/matplotlib/matplotlib/pull/3676.diff","patch_url":"https://github.com/matplotlib/matplotlib/pull/3676.patch","issue_url":"https://api.github.com/repos/matplotlib/matplotlib/issues/3676","number":3676,"state":"open","locked":false,"title":"Fix #3647 [backport to 1.4.x]","user":{"login":"lennart0901","id":406283,"avatar_url":"https://avatars.githubusercontent.com/u/406283?v=3","gravatar_id":"","url":"https://api.github.com/users/lennart0901","html_url":"https://github.com/lennart0901","followers_url":"https://api.github.com/users/lennart0901/followers","following_url":"https://api.github.com/users/lennart0901/following{/other_user}","gists_url":"https://api.github.com/users/lennart0901/gists{/gist_id}","starred_url":"https://api.github.com/users/lennart0901/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/lennart0901/subscriptions","organizations_url":"https://api.github.com/users/lennart0901/orgs","repos_url":"https://api.github.com/users/lennart0901/repos","events_url":"https://api.github.com/users/lennart0901/events{/privacy}","received_events_url":"https://api.github.com/users/lennart0901/received_events","type":"User","site_admin":false},"body":"This fixes #3647, for me on the tkagg backend.\r\nWhat still is strange is that the bug does not occur for e.g. cairo backend.","created_at":"2014-10-19T12:16:56Z","updated_at":"2015-01-01T15:00:51Z","closed_at":null,"merged_at":null,"merge_commit_sha":"a914a6d015868604032eaeb06884e75eb73089d4","assignee":null,"milestone":{"url":"https://api.github.com/repos/matplotlib/matplotlib/milestones/17","labels_url":"https://api.github.com/repos/matplotlib/matplotlib/milestones/17/labels","id":830260,"number":17,"title":"v1.4.3","description":"Scheduled bug-fix release.","creator":{"login":"tacaswell","id":199813,"avatar_url":"https://avatars.githubusercontent.com/u/199813?v=3","gravatar_id":"","url":"https://api.github.com/users/tacaswell","html_url":"https://github.com/tacaswell","followers_url":"https://api.github.com/users/tacaswell/followers","following_url":"https://api.github.com/users/tacaswell/following{/other_user}","gists_url":"https://api.github.com/users/tacaswell/gists{/gist_id}","starred_url":"https://api.github.com/users/tacaswell/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tacaswell/subscriptions","organizations_url":"https://api.github.com/users/tacaswell/orgs","repos_url":"https://api.github.com/users/tacaswell/repos","events_url":"https://api.github.com/users/tacaswell/events{/privacy}","received_events_url":"https://api.github.com/users/tacaswell/received_events","type":"User","site_admin":false},"open_issues":24,"closed_issues":51,"state":"open","created_at":"2014-10-17T13:41:23Z","updated_at":"2015-01-01T03:52:08Z","due_on":"2015-02-01T08:00:00Z","closed_at":null},"commits_url":"https://api.github.com/repos/matplotlib/matplotlib/pulls/3676/commits","review_comments_url":"https://api.github.com/repos/matplotlib/matplotlib/pulls/3676/comments","review_comment_url":"https://api.github.com/repos/matplotlib/matplotlib/pulls/comments/{number}","comments_url":"https://api.github.com/repos/matplotlib/matplotlib/issues/3676/comments","statuses_url":"https://api.github.com/repos/matplotlib/matplotlib/statuses/572bc04ef501e7921c66402fa420fde838310528","head":{"label":"lennart0901:fix_3647","ref":"fix_3647","sha":"572bc04ef501e7921c66402fa420fde838310528","user":{"login":"lennart0901","id":406283,"avatar_url":"https://avatars.githubusercontent.com/u/406283?v=3","gravatar_id":"","url":"https://api.github.com/users/lennart0901","html_url":"https://github.com/lennart0901","followers_url":"https://api.github.com/users/lennart0901/followers","following_url":"https://api.github.com/users/lennart0901/following{/other_user}","gists_url":"https://api.github.com/users/lennart0901/gists{/gist_id}","starred_url":"https://api.github.com/users/lennart0901/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/lennart0901/subscriptions","organizations_url":"https://api.github.com/users/lennart0901/orgs","repos_url":"https://api.github.com/users/lennart0901/repos","events_url":"https://api.github.com/users/lennart0901/events{/privacy}","received_events_url":"https://api.github.com/users/lennart0901/received_events","type":"User","site_admin":false},"repo":{"id":21864883,"name":"matplotlib","full_name":"lennart0901/matplotlib","owner":{"login":"lennart0901","id":406283,"avatar_url":"https://avatars.githubusercontent.com/u/406283?v=3","gravatar_id":"","url":"https://api.github.com/users/lennart0901","html_url":"https://github.com/lennart0901","followers_url":"https://api.github.com/users/lennart0901/followers","following_url":"https://api.github.com/users/lennart0901/following{/other_user}","gists_url":"https://api.github.com/users/lennart0901/gists{/gist_id}","starred_url":"https://api.github.com/users/lennart0901/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/lennart0901/subscriptions","organizations_url":"https://api.github.com/users/lennart0901/orgs","repos_url":"https://api.github.com/users/lennart0901/repos","events_url":"https://api.github.com/users/lennart0901/events{/privacy}","received_events_url":"https://api.github.com/users/lennart0901/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/lennart0901/matplotlib","description":"matplotlib: plotting with Python","fork":true,"url":"https://api.github.com/repos/lennart0901/matplotlib","forks_url":"https://api.github.com/repos/lennart0901/matplotlib/forks","keys_url":"https://api.github.com/repos/lennart0901/matplotlib/keys{/key_id}","collaborators_url":"https://api.github.com/repos/lennart0901/matplotlib/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/lennart0901/matplotlib/teams","hooks_url":"https://api.github.com/repos/lennart0901/matplotlib/hooks","issue_events_url":"https://api.github.com/repos/lennart0901/matplotlib/issues/events{/number}","events_url":"https://api.github.com/repos/lennart0901/matplotlib/events","assignees_url":"https://api.github.com/repos/lennart0901/matplotlib/assignees{/user}","branches_url":"https://api.github.com/repos/lennart0901/matplotlib/branches{/branch}","tags_url":"https://api.github.com/repos/lennart0901/matplotlib/tags","blobs_url":"https://api.github.com/repos/lennart0901/matplotlib/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/lennart0901/matplotlib/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/lennart0901/matplotlib/git/refs{/sha}","trees_url":"https://api.github.com/repos/lennart0901/matplotlib/git/trees{/sha}","statuses_url":"https://api.github.com/repos/lennart0901/matplotlib/statuses/{sha}","languages_url":"https://api.github.com/repos/lennart0901/matplotlib/languages","stargazers_url":"https://api.github.com/repos/lennart0901/matplotlib/stargazers","contributors_url":"https://api.github.com/repos/lennart0901/matplotlib/contributors","subscribers_url":"https://api.github.com/repos/lennart0901/matplotlib/subscribers","subscription_url":"https://api.github.com/repos/lennart0901/matplotlib/subscription","commits_url":"https://api.github.com/repos/lennart0901/matplotlib/commits{/sha}","git_commits_url":"https://api.github.com/repos/lennart0901/matplotlib/git/commits{/sha}","comments_url":"https://api.github.com/repos/lennart0901/matplotlib/comments{/number}","issue_comment_url":"https://api.github.com/repos/lennart0901/matplotlib/issues/comments/{number}","contents_url":"https://api.github.com/repos/lennart0901/matplotlib/contents/{+path}","compare_url":"https://api.github.com/repos/lennart0901/matplotlib/compare/{base}...{head}","merges_url":"https://api.github.com/repos/lennart0901/matplotlib/merges","archive_url":"https://api.github.com/repos/lennart0901/matplotlib/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/lennart0901/matplotlib/downloads","issues_url":"https://api.github.com/repos/lennart0901/matplotlib/issues{/number}","pulls_url":"https://api.github.com/repos/lennart0901/matplotlib/pulls{/number}","milestones_url":"https://api.github.com/repos/lennart0901/matplotlib/milestones{/number}","notifications_url":"https://api.github.com/repos/lennart0901/matplotlib/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/lennart0901/matplotlib/labels{/name}","releases_url":"https://api.github.com/repos/lennart0901/matplotlib/releases{/id}","created_at":"2014-07-15T15:19:40Z","updated_at":"2014-11-28T15:25:52Z","pushed_at":"2014-11-28T15:30:49Z","git_url":"git://github.com/lennart0901/matplotlib.git","ssh_url":"git@github.com:lennart0901/matplotlib.git","clone_url":"https://github.com/lennart0901/matplotlib.git","svn_url":"https://github.com/lennart0901/matplotlib","homepage":"http://matplotlib.org/","size":199316,"stargazers_count":0,"watchers_count":0,"language":"Python","has_issues":false,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master"}},"base":{"label":"matplotlib:master","ref":"master","sha":"5b398e95454ba9cc6dfad866ff7bc22b41ad7a68","user":{"login":"matplotlib","id":215947,"avatar_url":"https://avatars.githubusercontent.com/u/215947?v=3","gravatar_id":"","url":"https://api.github.com/users/matplotlib","html_url":"https://github.com/matplotlib","followers_url":"https://api.github.com/users/matplotlib/followers","following_url":"https://api.github.com/users/matplotlib/following{/other_user}","gists_url":"https://api.github.com/users/matplotlib/gists{/gist_id}","starred_url":"https://api.github.com/users/matplotlib/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/matplotlib/subscriptions","organizations_url":"https://api.github.com/users/matplotlib/orgs","repos_url":"https://api.github.com/users/matplotlib/repos","events_url":"https://api.github.com/users/matplotlib/events{/privacy}","received_events_url":"https://api.github.com/users/matplotlib/received_events","type":"Organization","site_admin":false},"repo":{"id":1385122,"name":"matplotlib","full_name":"matplotlib/matplotlib","owner":{"login":"matplotlib","id":215947,"avatar_url":"https://avatars.githubusercontent.com/u/215947?v=3","gravatar_id":"","url":"https://api.github.com/users/matplotlib","html_url":"https://github.com/matplotlib","followers_url":"https://api.github.com/users/matplotlib/followers","following_url":"https://api.github.com/users/matplotlib/following{/other_user}","gists_url":"https://api.github.com/users/matplotlib/gists{/gist_id}","starred_url":"https://api.github.com/users/matplotlib/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/matplotlib/subscriptions","organizations_url":"https://api.github.com/users/matplotlib/orgs","repos_url":"https://api.github.com/users/matplotlib/repos","events_url":"https://api.github.com/users/matplotlib/events{/privacy}","received_events_url":"https://api.github.com/users/matplotlib/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/matplotlib/matplotlib","description":"matplotlib: plotting with Python","fork":false,"url":"https://api.github.com/repos/matplotlib/matplotlib","forks_url":"https://api.github.com/repos/matplotlib/matplotlib/forks","keys_url":"https://api.github.com/repos/matplotlib/matplotlib/keys{/key_id}","collaborators_url":"https://api.github.com/repos/matplotlib/matplotlib/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/matplotlib/matplotlib/teams","hooks_url":"https://api.github.com/repos/matplotlib/matplotlib/hooks","issue_events_url":"https://api.github.com/repos/matplotlib/matplotlib/issues/events{/number}","events_url":"https://api.github.com/repos/matplotlib/matplotlib/events","assignees_url":"https://api.github.com/repos/matplotlib/matplotlib/assignees{/user}","branches_url":"https://api.github.com/repos/matplotlib/matplotlib/branches{/branch}","tags_url":"https://api.github.com/repos/matplotlib/matplotlib/tags","blobs_url":"https://api.github.com/repos/matplotlib/matplotlib/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/matplotlib/matplotlib/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/matplotlib/matplotlib/git/refs{/sha}","trees_url":"https://api.github.com/repos/matplotlib/matplotlib/git/trees{/sha}","statuses_url":"https://api.github.com/repos/matplotlib/matplotlib/statuses/{sha}","languages_url":"https://api.github.com/repos/matplotlib/matplotlib/languages","stargazers_url":"https://api.github.com/repos/matplotlib/matplotlib/stargazers","contributors_url":"https://api.github.com/repos/matplotlib/matplotlib/contributors","subscribers_url":"https://api.github.com/repos/matplotlib/matplotlib/subscribers","subscription_url":"https://api.github.com/repos/matplotlib/matplotlib/subscription","commits_url":"https://api.github.com/repos/matplotlib/matplotlib/commits{/sha}","git_commits_url":"https://api.github.com/repos/matplotlib/matplotlib/git/commits{/sha}","comments_url":"https://api.github.com/repos/matplotlib/matplotlib/comments{/number}","issue_comment_url":"https://api.github.com/repos/matplotlib/matplotlib/issues/comments/{number}","contents_url":"https://api.github.com/repos/matplotlib/matplotlib/contents/{+path}","compare_url":"https://api.github.com/repos/matplotlib/matplotlib/compare/{base}...{head}","merges_url":"https://api.github.com/repos/matplotlib/matplotlib/merges","archive_url":"https://api.github.com/repos/matplotlib/matplotlib/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/matplotlib/matplotlib/downloads","issues_url":"https://api.github.com/repos/matplotlib/matplotlib/issues{/number}","pulls_url":"https://api.github.com/repos/matplotlib/matplotlib/pulls{/number}","milestones_url":"https://api.github.com/repos/matplotlib/matplotlib/milestones{/number}","notifications_url":"https://api.github.com/repos/matplotlib/matplotlib/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/matplotlib/matplotlib/labels{/name}","releases_url":"https://api.github.com/repos/matplotlib/matplotlib/releases{/id}","created_at":"2011-02-19T03:17:12Z","updated_at":"2015-01-01T04:46:04Z","pushed_at":"2015-01-01T03:50:39Z","git_url":"git://github.com/matplotlib/matplotlib.git","ssh_url":"git@github.com:matplotlib/matplotlib.git","clone_url":"https://github.com/matplotlib/matplotlib.git","svn_url":"https://github.com/matplotlib/matplotlib","homepage":"http://matplotlib.org/","size":249595,"stargazers_count":2133,"watchers_count":2133,"language":"Python","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":1042,"mirror_url":null,"open_issues_count":440,"forks":1042,"open_issues":440,"watchers":2133,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/matplotlib/matplotlib/pulls/3676"},"html":{"href":"https://github.com/matplotlib/matplotlib/pull/3676"},"issue":{"href":"https://api.github.com/repos/matplotlib/matplotlib/issues/3676"},"comments":{"href":"https://api.github.com/repos/matplotlib/matplotlib/issues/3676/comments"},"review_comments":{"href":"https://api.github.com/repos/matplotlib/matplotlib/pulls/3676/comments"},"review_comment":{"href":"https://api.github.com/repos/matplotlib/matplotlib/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/matplotlib/matplotlib/pulls/3676/commits"},"statuses":{"href":"https://api.github.com/repos/matplotlib/matplotlib/statuses/572bc04ef501e7921c66402fa420fde838310528"}}}},"public":true,"created_at":"2015-01-01T15:00:51Z","org":{"id":215947,"login":"matplotlib","gravatar_id":"","url":"https://api.github.com/orgs/matplotlib","avatar_url":"https://avatars.githubusercontent.com/u/215947?"}}
,{"id":"2489651498","type":"PushEvent","actor":{"id":546831,"login":"hanjos","gravatar_id":"","url":"https://api.github.com/users/hanjos","avatar_url":"https://avatars.githubusercontent.com/u/546831?"},"repo":{"id":27872255,"name":"hanjos/nexus","url":"https://api.github.com/repos/hanjos/nexus"},"payload":{"push_id":536864186,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"966a8f76647a530053e7bc8c34bb4be23ec6b438","before":"7ab63e4fc3f8eaf3bea9203e62069d5b424bbb7b","commits":[{"sha":"5400395118bfba87cdd574236e099f2ced7912ff","author":{"email":"a6a0ed2b2b61e4de3362b6eef0d4c791b55c2ae4@acm.org","name":"Humberto Anjos"},"message":"Fixing some comments and String()s.","distinct":true,"url":"https://api.github.com/repos/hanjos/nexus/commits/5400395118bfba87cdd574236e099f2ced7912ff"},{"sha":"966a8f76647a530053e7bc8c34bb4be23ec6b438","author":{"email":"a6a0ed2b2b61e4de3362b6eef0d4c791b55c2ae4@acm.org","name":"Humberto Anjos"},"message":"Removing DefaultFileName().","distinct":true,"url":"https://api.github.com/repos/hanjos/nexus/commits/966a8f76647a530053e7bc8c34bb4be23ec6b438"}]},"public":true,"created_at":"2015-01-01T15:00:52Z"}
,{"id":"2489651500","type":"PushEvent","actor":{"id":342183,"login":"Randati","gravatar_id":"","url":"https://api.github.com/users/Randati","avatar_url":"https://avatars.githubusercontent.com/u/342183?"},"repo":{"id":28309001,"name":"Randati/cjdrs","url":"https://api.github.com/repos/Randati/cjdrs"},"payload":{"push_id":536864189,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"e7d20130646f7d4b2e241e3cf5780531319b4adf","before":"dc8d3526c6ccc0cf557418047a2c0b041d569847","commits":[{"sha":"e7d20130646f7d4b2e241e3cf5780531319b4adf","author":{"email":"6506045a2a0a9fbd6ed3f2c6493f339164053041@aalto.fi","name":"Vanhala Antti"},"message":"Configurable tun device and udp bind","distinct":true,"url":"https://api.github.com/repos/Randati/cjdrs/commits/e7d20130646f7d4b2e241e3cf5780531319b4adf"}]},"public":true,"created_at":"2015-01-01T15:00:52Z"}
,{"id":"2489651502","type":"PushEvent","actor":{"id":928957,"login":"EricSchles","gravatar_id":"","url":"https://api.github.com/users/EricSchles","avatar_url":"https://avatars.githubusercontent.com/u/928957?"},"repo":{"id":28687489,"name":"EricSchles/typecheck","url":"https://api.github.com/repos/EricSchles/typecheck"},"payload":{"push_id":536864190,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"ef1a32ff62e8f166bd70754eed656177d16e03ed","before":"90bcfde4601cb4d6003653720bdaec6e27fc9e6f","commits":[{"sha":"ef1a32ff62e8f166bd70754eed656177d16e03ed","author":{"email":"a964ada144256419b1dd7e3f8a6b4fc60c5e9024@gmail.com","name":"EricSchles"},"message":"java is just annoying","distinct":true,"url":"https://api.github.com/repos/EricSchles/typecheck/commits/ef1a32ff62e8f166bd70754eed656177d16e03ed"}]},"public":true,"created_at":"2015-01-01T15:00:52Z"}
,{"id":"2489651504","type":"PullRequestEvent","actor":{"id":1793469,"login":"tan-tan-kanarek","gravatar_id":"","url":"https://api.github.com/users/tan-tan-kanarek","avatar_url":"https://avatars.githubusercontent.com/u/1793469?"},"repo":{"id":15510138,"name":"kaltura/platform-install-packages","url":"https://api.github.com/repos/kaltura/platform-install-packages"},"payload":{"action":"opened","number":312,"pull_request":{"url":"https://api.github.com/repos/kaltura/platform-install-packages/pulls/312","id":26743774,"html_url":"https://github.com/kaltura/platform-install-packages/pull/312","diff_url":"https://github.com/kaltura/platform-install-packages/pull/312.diff","patch_url":"https://github.com/kaltura/platform-install-packages/pull/312.patch","issue_url":"https://api.github.com/repos/kaltura/platform-install-packages/issues/312","number":312,"state":"open","locked":false,"title":"Buold and package monit","user":{"login":"tan-tan-kanarek","id":1793469,"avatar_url":"https://avatars.githubusercontent.com/u/1793469?v=3","gravatar_id":"","url":"https://api.github.com/users/tan-tan-kanarek","html_url":"https://github.com/tan-tan-kanarek","followers_url":"https://api.github.com/users/tan-tan-kanarek/followers","following_url":"https://api.github.com/users/tan-tan-kanarek/following{/other_user}","gists_url":"https://api.github.com/users/tan-tan-kanarek/gists{/gist_id}","starred_url":"https://api.github.com/users/tan-tan-kanarek/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tan-tan-kanarek/subscriptions","organizations_url":"https://api.github.com/users/tan-tan-kanarek/orgs","repos_url":"https://api.github.com/users/tan-tan-kanarek/repos","events_url":"https://api.github.com/users/tan-tan-kanarek/events{/privacy}","received_events_url":"https://api.github.com/users/tan-tan-kanarek/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:00:52Z","updated_at":"2015-01-01T15:00:52Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/kaltura/platform-install-packages/pulls/312/commits","review_comments_url":"https://api.github.com/repos/kaltura/platform-install-packages/pulls/312/comments","review_comment_url":"https://api.github.com/repos/kaltura/platform-install-packages/pulls/comments/{number}","comments_url":"https://api.github.com/repos/kaltura/platform-install-packages/issues/312/comments","statuses_url":"https://api.github.com/repos/kaltura/platform-install-packages/statuses/d01dff1c653fbd9f97973c77bf85c9409fda3ea2","head":{"label":"kaltura:Jupiter-10.2.0-monit","ref":"Jupiter-10.2.0-monit","sha":"d01dff1c653fbd9f97973c77bf85c9409fda3ea2","user":{"login":"kaltura","id":319096,"avatar_url":"https://avatars.githubusercontent.com/u/319096?v=3","gravatar_id":"","url":"https://api.github.com/users/kaltura","html_url":"https://github.com/kaltura","followers_url":"https://api.github.com/users/kaltura/followers","following_url":"https://api.github.com/users/kaltura/following{/other_user}","gists_url":"https://api.github.com/users/kaltura/gists{/gist_id}","starred_url":"https://api.github.com/users/kaltura/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/kaltura/subscriptions","organizations_url":"https://api.github.com/users/kaltura/orgs","repos_url":"https://api.github.com/users/kaltura/repos","events_url":"https://api.github.com/users/kaltura/events{/privacy}","received_events_url":"https://api.github.com/users/kaltura/received_events","type":"Organization","site_admin":false},"repo":{"id":15510138,"name":"platform-install-packages","full_name":"kaltura/platform-install-packages","owner":{"login":"kaltura","id":319096,"avatar_url":"https://avatars.githubusercontent.com/u/319096?v=3","gravatar_id":"","url":"https://api.github.com/users/kaltura","html_url":"https://github.com/kaltura","followers_url":"https://api.github.com/users/kaltura/followers","following_url":"https://api.github.com/users/kaltura/following{/other_user}","gists_url":"https://api.github.com/users/kaltura/gists{/gist_id}","starred_url":"https://api.github.com/users/kaltura/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/kaltura/subscriptions","organizations_url":"https://api.github.com/users/kaltura/orgs","repos_url":"https://api.github.com/users/kaltura/repos","events_url":"https://api.github.com/users/kaltura/events{/privacy}","received_events_url":"https://api.github.com/users/kaltura/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/kaltura/platform-install-packages","description":"Official deployment packages to install the Kaltura platform on a server or cluster environments using native OS package managers","fork":false,"url":"https://api.github.com/repos/kaltura/platform-install-packages","forks_url":"https://api.github.com/repos/kaltura/platform-install-packages/forks","keys_url":"https://api.github.com/repos/kaltura/platform-install-packages/keys{/key_id}","collaborators_url":"https://api.github.com/repos/kaltura/platform-install-packages/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/kaltura/platform-install-packages/teams","hooks_url":"https://api.github.com/repos/kaltura/platform-install-packages/hooks","issue_events_url":"https://api.github.com/repos/kaltura/platform-install-packages/issues/events{/number}","events_url":"https://api.github.com/repos/kaltura/platform-install-packages/events","assignees_url":"https://api.github.com/repos/kaltura/platform-install-packages/assignees{/user}","branches_url":"https://api.github.com/repos/kaltura/platform-install-packages/branches{/branch}","tags_url":"https://api.github.com/repos/kaltura/platform-install-packages/tags","blobs_url":"https://api.github.com/repos/kaltura/platform-install-packages/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/kaltura/platform-install-packages/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/kaltura/platform-install-packages/git/refs{/sha}","trees_url":"https://api.github.com/repos/kaltura/platform-install-packages/git/trees{/sha}","statuses_url":"https://api.github.com/repos/kaltura/platform-install-packages/statuses/{sha}","languages_url":"https://api.github.com/repos/kaltura/platform-install-packages/languages","stargazers_url":"https://api.github.com/repos/kaltura/platform-install-packages/stargazers","contributors_url":"https://api.github.com/repos/kaltura/platform-install-packages/contributors","subscribers_url":"https://api.github.com/repos/kaltura/platform-install-packages/subscribers","subscription_url":"https://api.github.com/repos/kaltura/platform-install-packages/subscription","commits_url":"https://api.github.com/repos/kaltura/platform-install-packages/commits{/sha}","git_commits_url":"https://api.github.com/repos/kaltura/platform-install-packages/git/commits{/sha}","comments_url":"https://api.github.com/repos/kaltura/platform-install-packages/comments{/number}","issue_comment_url":"https://api.github.com/repos/kaltura/platform-install-packages/issues/comments/{number}","contents_url":"https://api.github.com/repos/kaltura/platform-install-packages/contents/{+path}","compare_url":"https://api.github.com/repos/kaltura/platform-install-packages/compare/{base}...{head}","merges_url":"https://api.github.com/repos/kaltura/platform-install-packages/merges","archive_url":"https://api.github.com/repos/kaltura/platform-install-packages/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/kaltura/platform-install-packages/downloads","issues_url":"https://api.github.com/repos/kaltura/platform-install-packages/issues{/number}","pulls_url":"https://api.github.com/repos/kaltura/platform-install-packages/pulls{/number}","milestones_url":"https://api.github.com/repos/kaltura/platform-install-packages/milestones{/number}","notifications_url":"https://api.github.com/repos/kaltura/platform-install-packages/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/kaltura/platform-install-packages/labels{/name}","releases_url":"https://api.github.com/repos/kaltura/platform-install-packages/releases{/id}","created_at":"2013-12-29T15:08:53Z","updated_at":"2015-01-01T13:14:03Z","pushed_at":"2015-01-01T15:00:38Z","git_url":"git://github.com/kaltura/platform-install-packages.git","ssh_url":"git@github.com:kaltura/platform-install-packages.git","clone_url":"https://github.com/kaltura/platform-install-packages.git","svn_url":"https://github.com/kaltura/platform-install-packages","homepage":null,"size":32514,"stargazers_count":60,"watchers_count":60,"language":"Shell","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":true,"forks_count":38,"mirror_url":null,"open_issues_count":6,"forks":38,"open_issues":6,"watchers":60,"default_branch":"Jupiter-10.2.0"}},"base":{"label":"kaltura:Jupiter-10.2.0","ref":"Jupiter-10.2.0","sha":"20b7a9c23a66575994c13e9f747f28a0f89aa557","user":{"login":"kaltura","id":319096,"avatar_url":"https://avatars.githubusercontent.com/u/319096?v=3","gravatar_id":"","url":"https://api.github.com/users/kaltura","html_url":"https://github.com/kaltura","followers_url":"https://api.github.com/users/kaltura/followers","following_url":"https://api.github.com/users/kaltura/following{/other_user}","gists_url":"https://api.github.com/users/kaltura/gists{/gist_id}","starred_url":"https://api.github.com/users/kaltura/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/kaltura/subscriptions","organizations_url":"https://api.github.com/users/kaltura/orgs","repos_url":"https://api.github.com/users/kaltura/repos","events_url":"https://api.github.com/users/kaltura/events{/privacy}","received_events_url":"https://api.github.com/users/kaltura/received_events","type":"Organization","site_admin":false},"repo":{"id":15510138,"name":"platform-install-packages","full_name":"kaltura/platform-install-packages","owner":{"login":"kaltura","id":319096,"avatar_url":"https://avatars.githubusercontent.com/u/319096?v=3","gravatar_id":"","url":"https://api.github.com/users/kaltura","html_url":"https://github.com/kaltura","followers_url":"https://api.github.com/users/kaltura/followers","following_url":"https://api.github.com/users/kaltura/following{/other_user}","gists_url":"https://api.github.com/users/kaltura/gists{/gist_id}","starred_url":"https://api.github.com/users/kaltura/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/kaltura/subscriptions","organizations_url":"https://api.github.com/users/kaltura/orgs","repos_url":"https://api.github.com/users/kaltura/repos","events_url":"https://api.github.com/users/kaltura/events{/privacy}","received_events_url":"https://api.github.com/users/kaltura/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/kaltura/platform-install-packages","description":"Official deployment packages to install the Kaltura platform on a server or cluster environments using native OS package managers","fork":false,"url":"https://api.github.com/repos/kaltura/platform-install-packages","forks_url":"https://api.github.com/repos/kaltura/platform-install-packages/forks","keys_url":"https://api.github.com/repos/kaltura/platform-install-packages/keys{/key_id}","collaborators_url":"https://api.github.com/repos/kaltura/platform-install-packages/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/kaltura/platform-install-packages/teams","hooks_url":"https://api.github.com/repos/kaltura/platform-install-packages/hooks","issue_events_url":"https://api.github.com/repos/kaltura/platform-install-packages/issues/events{/number}","events_url":"https://api.github.com/repos/kaltura/platform-install-packages/events","assignees_url":"https://api.github.com/repos/kaltura/platform-install-packages/assignees{/user}","branches_url":"https://api.github.com/repos/kaltura/platform-install-packages/branches{/branch}","tags_url":"https://api.github.com/repos/kaltura/platform-install-packages/tags","blobs_url":"https://api.github.com/repos/kaltura/platform-install-packages/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/kaltura/platform-install-packages/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/kaltura/platform-install-packages/git/refs{/sha}","trees_url":"https://api.github.com/repos/kaltura/platform-install-packages/git/trees{/sha}","statuses_url":"https://api.github.com/repos/kaltura/platform-install-packages/statuses/{sha}","languages_url":"https://api.github.com/repos/kaltura/platform-install-packages/languages","stargazers_url":"https://api.github.com/repos/kaltura/platform-install-packages/stargazers","contributors_url":"https://api.github.com/repos/kaltura/platform-install-packages/contributors","subscribers_url":"https://api.github.com/repos/kaltura/platform-install-packages/subscribers","subscription_url":"https://api.github.com/repos/kaltura/platform-install-packages/subscription","commits_url":"https://api.github.com/repos/kaltura/platform-install-packages/commits{/sha}","git_commits_url":"https://api.github.com/repos/kaltura/platform-install-packages/git/commits{/sha}","comments_url":"https://api.github.com/repos/kaltura/platform-install-packages/comments{/number}","issue_comment_url":"https://api.github.com/repos/kaltura/platform-install-packages/issues/comments/{number}","contents_url":"https://api.github.com/repos/kaltura/platform-install-packages/contents/{+path}","compare_url":"https://api.github.com/repos/kaltura/platform-install-packages/compare/{base}...{head}","merges_url":"https://api.github.com/repos/kaltura/platform-install-packages/merges","archive_url":"https://api.github.com/repos/kaltura/platform-install-packages/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/kaltura/platform-install-packages/downloads","issues_url":"https://api.github.com/repos/kaltura/platform-install-packages/issues{/number}","pulls_url":"https://api.github.com/repos/kaltura/platform-install-packages/pulls{/number}","milestones_url":"https://api.github.com/repos/kaltura/platform-install-packages/milestones{/number}","notifications_url":"https://api.github.com/repos/kaltura/platform-install-packages/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/kaltura/platform-install-packages/labels{/name}","releases_url":"https://api.github.com/repos/kaltura/platform-install-packages/releases{/id}","created_at":"2013-12-29T15:08:53Z","updated_at":"2015-01-01T13:14:03Z","pushed_at":"2015-01-01T15:00:38Z","git_url":"git://github.com/kaltura/platform-install-packages.git","ssh_url":"git@github.com:kaltura/platform-install-packages.git","clone_url":"https://github.com/kaltura/platform-install-packages.git","svn_url":"https://github.com/kaltura/platform-install-packages","homepage":null,"size":32514,"stargazers_count":60,"watchers_count":60,"language":"Shell","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":true,"forks_count":38,"mirror_url":null,"open_issues_count":6,"forks":38,"open_issues":6,"watchers":60,"default_branch":"Jupiter-10.2.0"}},"_links":{"self":{"href":"https://api.github.com/repos/kaltura/platform-install-packages/pulls/312"},"html":{"href":"https://github.com/kaltura/platform-install-packages/pull/312"},"issue":{"href":"https://api.github.com/repos/kaltura/platform-install-packages/issues/312"},"comments":{"href":"https://api.github.com/repos/kaltura/platform-install-packages/issues/312/comments"},"review_comments":{"href":"https://api.github.com/repos/kaltura/platform-install-packages/pulls/312/comments"},"review_comment":{"href":"https://api.github.com/repos/kaltura/platform-install-packages/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/kaltura/platform-install-packages/pulls/312/commits"},"statuses":{"href":"https://api.github.com/repos/kaltura/platform-install-packages/statuses/d01dff1c653fbd9f97973c77bf85c9409fda3ea2"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":1,"additions":48,"deletions":0,"changed_files":3}},"public":true,"created_at":"2015-01-01T15:00:53Z","org":{"id":319096,"login":"kaltura","gravatar_id":"","url":"https://api.github.com/orgs/kaltura","avatar_url":"https://avatars.githubusercontent.com/u/319096?"}}
,{"id":"2489651508","type":"CreateEvent","actor":{"id":1646422,"login":"brunocarvalhodearaujo","gravatar_id":"","url":"https://api.github.com/users/brunocarvalhodearaujo","avatar_url":"https://avatars.githubusercontent.com/u/1646422?"},"repo":{"id":28688285,"name":"brunocarvalhodearaujo/datastore","url":"https://api.github.com/repos/brunocarvalhodearaujo/datastore"},"payload":{"ref":"0.2","ref_type":"branch","master_branch":"0.1","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:00:53Z"}
,{"id":"2489651509","type":"WatchEvent","actor":{"id":143572,"login":"hotoo","gravatar_id":"","url":"https://api.github.com/users/hotoo","avatar_url":"https://avatars.githubusercontent.com/u/143572?"},"repo":{"id":3327272,"name":"lognormal/boomerang","url":"https://api.github.com/repos/lognormal/boomerang"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:00:53Z","org":{"id":1398850,"login":"lognormal","gravatar_id":"","url":"https://api.github.com/orgs/lognormal","avatar_url":"https://avatars.githubusercontent.com/u/1398850?"}}
,{"id":"2489651511","type":"CreateEvent","actor":{"id":8143365,"login":"ClemensAhrens","gravatar_id":"","url":"https://api.github.com/users/ClemensAhrens","avatar_url":"https://avatars.githubusercontent.com/u/8143365?"},"repo":{"id":28688612,"name":"ClemensAhrens/coref","url":"https://api.github.com/repos/ClemensAhrens/coref"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:00:53Z"}
,{"id":"2489651517","type":"WatchEvent","actor":{"id":983189,"login":"rbartoli","gravatar_id":"","url":"https://api.github.com/users/rbartoli","avatar_url":"https://avatars.githubusercontent.com/u/983189?"},"repo":{"id":2010022,"name":"evanx/vellum","url":"https://api.github.com/repos/evanx/vellum"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:00:54Z"}
,{"id":"2489651518","type":"PullRequestEvent","actor":{"id":1560181,"login":"Adaptivity","gravatar_id":"","url":"https://api.github.com/users/Adaptivity","avatar_url":"https://avatars.githubusercontent.com/u/1560181?"},"repo":{"id":13984803,"name":"jakimfett/AlchemyPlusPlus","url":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus"},"payload":{"action":"opened","number":28,"pull_request":{"url":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/pulls/28","id":26743775,"html_url":"https://github.com/jakimfett/AlchemyPlusPlus/pull/28","diff_url":"https://github.com/jakimfett/AlchemyPlusPlus/pull/28.diff","patch_url":"https://github.com/jakimfett/AlchemyPlusPlus/pull/28.patch","issue_url":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/issues/28","number":28,"state":"open","locked":false,"title":"Update ru_RU.lang","user":{"login":"Adaptivity","id":1560181,"avatar_url":"https://avatars.githubusercontent.com/u/1560181?v=3","gravatar_id":"","url":"https://api.github.com/users/Adaptivity","html_url":"https://github.com/Adaptivity","followers_url":"https://api.github.com/users/Adaptivity/followers","following_url":"https://api.github.com/users/Adaptivity/following{/other_user}","gists_url":"https://api.github.com/users/Adaptivity/gists{/gist_id}","starred_url":"https://api.github.com/users/Adaptivity/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Adaptivity/subscriptions","organizations_url":"https://api.github.com/users/Adaptivity/orgs","repos_url":"https://api.github.com/users/Adaptivity/repos","events_url":"https://api.github.com/users/Adaptivity/events{/privacy}","received_events_url":"https://api.github.com/users/Adaptivity/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:00:54Z","updated_at":"2015-01-01T15:00:54Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/pulls/28/commits","review_comments_url":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/pulls/28/comments","review_comment_url":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/pulls/comments/{number}","comments_url":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/issues/28/comments","statuses_url":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/statuses/9b030b578f898458765d9be3d66553d3c619c16e","head":{"label":"Adaptivity:patch-1","ref":"patch-1","sha":"9b030b578f898458765d9be3d66553d3c619c16e","user":{"login":"Adaptivity","id":1560181,"avatar_url":"https://avatars.githubusercontent.com/u/1560181?v=3","gravatar_id":"","url":"https://api.github.com/users/Adaptivity","html_url":"https://github.com/Adaptivity","followers_url":"https://api.github.com/users/Adaptivity/followers","following_url":"https://api.github.com/users/Adaptivity/following{/other_user}","gists_url":"https://api.github.com/users/Adaptivity/gists{/gist_id}","starred_url":"https://api.github.com/users/Adaptivity/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Adaptivity/subscriptions","organizations_url":"https://api.github.com/users/Adaptivity/orgs","repos_url":"https://api.github.com/users/Adaptivity/repos","events_url":"https://api.github.com/users/Adaptivity/events{/privacy}","received_events_url":"https://api.github.com/users/Adaptivity/received_events","type":"User","site_admin":false},"repo":{"id":23959316,"name":"AlchemyPlusPlus","full_name":"Adaptivity/AlchemyPlusPlus","owner":{"login":"Adaptivity","id":1560181,"avatar_url":"https://avatars.githubusercontent.com/u/1560181?v=3","gravatar_id":"","url":"https://api.github.com/users/Adaptivity","html_url":"https://github.com/Adaptivity","followers_url":"https://api.github.com/users/Adaptivity/followers","following_url":"https://api.github.com/users/Adaptivity/following{/other_user}","gists_url":"https://api.github.com/users/Adaptivity/gists{/gist_id}","starred_url":"https://api.github.com/users/Adaptivity/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Adaptivity/subscriptions","organizations_url":"https://api.github.com/users/Adaptivity/orgs","repos_url":"https://api.github.com/users/Adaptivity/repos","events_url":"https://api.github.com/users/Adaptivity/events{/privacy}","received_events_url":"https://api.github.com/users/Adaptivity/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/Adaptivity/AlchemyPlusPlus","description":"Expanded brewing system for Minecraft","fork":true,"url":"https://api.github.com/repos/Adaptivity/AlchemyPlusPlus","forks_url":"https://api.github.com/repos/Adaptivity/AlchemyPlusPlus/forks","keys_url":"https://api.github.com/repos/Adaptivity/AlchemyPlusPlus/keys{/key_id}","collaborators_url":"https://api.github.com/repos/Adaptivity/AlchemyPlusPlus/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/Adaptivity/AlchemyPlusPlus/teams","hooks_url":"https://api.github.com/repos/Adaptivity/AlchemyPlusPlus/hooks","issue_events_url":"https://api.github.com/repos/Adaptivity/AlchemyPlusPlus/issues/events{/number}","events_url":"https://api.github.com/repos/Adaptivity/AlchemyPlusPlus/events","assignees_url":"https://api.github.com/repos/Adaptivity/AlchemyPlusPlus/assignees{/user}","branches_url":"https://api.github.com/repos/Adaptivity/AlchemyPlusPlus/branches{/branch}","tags_url":"https://api.github.com/repos/Adaptivity/AlchemyPlusPlus/tags","blobs_url":"https://api.github.com/repos/Adaptivity/AlchemyPlusPlus/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/Adaptivity/AlchemyPlusPlus/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/Adaptivity/AlchemyPlusPlus/git/refs{/sha}","trees_url":"https://api.github.com/repos/Adaptivity/AlchemyPlusPlus/git/trees{/sha}","statuses_url":"https://api.github.com/repos/Adaptivity/AlchemyPlusPlus/statuses/{sha}","languages_url":"https://api.github.com/repos/Adaptivity/AlchemyPlusPlus/languages","stargazers_url":"https://api.github.com/repos/Adaptivity/AlchemyPlusPlus/stargazers","contributors_url":"https://api.github.com/repos/Adaptivity/AlchemyPlusPlus/contributors","subscribers_url":"https://api.github.com/repos/Adaptivity/AlchemyPlusPlus/subscribers","subscription_url":"https://api.github.com/repos/Adaptivity/AlchemyPlusPlus/subscription","commits_url":"https://api.github.com/repos/Adaptivity/AlchemyPlusPlus/commits{/sha}","git_commits_url":"https://api.github.com/repos/Adaptivity/AlchemyPlusPlus/git/commits{/sha}","comments_url":"https://api.github.com/repos/Adaptivity/AlchemyPlusPlus/comments{/number}","issue_comment_url":"https://api.github.com/repos/Adaptivity/AlchemyPlusPlus/issues/comments/{number}","contents_url":"https://api.github.com/repos/Adaptivity/AlchemyPlusPlus/contents/{+path}","compare_url":"https://api.github.com/repos/Adaptivity/AlchemyPlusPlus/compare/{base}...{head}","merges_url":"https://api.github.com/repos/Adaptivity/AlchemyPlusPlus/merges","archive_url":"https://api.github.com/repos/Adaptivity/AlchemyPlusPlus/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/Adaptivity/AlchemyPlusPlus/downloads","issues_url":"https://api.github.com/repos/Adaptivity/AlchemyPlusPlus/issues{/number}","pulls_url":"https://api.github.com/repos/Adaptivity/AlchemyPlusPlus/pulls{/number}","milestones_url":"https://api.github.com/repos/Adaptivity/AlchemyPlusPlus/milestones{/number}","notifications_url":"https://api.github.com/repos/Adaptivity/AlchemyPlusPlus/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/Adaptivity/AlchemyPlusPlus/labels{/name}","releases_url":"https://api.github.com/repos/Adaptivity/AlchemyPlusPlus/releases{/id}","created_at":"2014-09-12T12:14:53Z","updated_at":"2014-09-03T23:39:40Z","pushed_at":"2015-01-01T15:00:35Z","git_url":"git://github.com/Adaptivity/AlchemyPlusPlus.git","ssh_url":"git@github.com:Adaptivity/AlchemyPlusPlus.git","clone_url":"https://github.com/Adaptivity/AlchemyPlusPlus.git","svn_url":"https://github.com/Adaptivity/AlchemyPlusPlus","homepage":"","size":1162,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":false,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"1.7-update"}},"base":{"label":"jakimfett:1.7-update","ref":"1.7-update","sha":"20ac6da256aef7b5e08447741242efee2497d990","user":{"login":"jakimfett","id":2565176,"avatar_url":"https://avatars.githubusercontent.com/u/2565176?v=3","gravatar_id":"","url":"https://api.github.com/users/jakimfett","html_url":"https://github.com/jakimfett","followers_url":"https://api.github.com/users/jakimfett/followers","following_url":"https://api.github.com/users/jakimfett/following{/other_user}","gists_url":"https://api.github.com/users/jakimfett/gists{/gist_id}","starred_url":"https://api.github.com/users/jakimfett/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jakimfett/subscriptions","organizations_url":"https://api.github.com/users/jakimfett/orgs","repos_url":"https://api.github.com/users/jakimfett/repos","events_url":"https://api.github.com/users/jakimfett/events{/privacy}","received_events_url":"https://api.github.com/users/jakimfett/received_events","type":"User","site_admin":false},"repo":{"id":13984803,"name":"AlchemyPlusPlus","full_name":"jakimfett/AlchemyPlusPlus","owner":{"login":"jakimfett","id":2565176,"avatar_url":"https://avatars.githubusercontent.com/u/2565176?v=3","gravatar_id":"","url":"https://api.github.com/users/jakimfett","html_url":"https://github.com/jakimfett","followers_url":"https://api.github.com/users/jakimfett/followers","following_url":"https://api.github.com/users/jakimfett/following{/other_user}","gists_url":"https://api.github.com/users/jakimfett/gists{/gist_id}","starred_url":"https://api.github.com/users/jakimfett/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jakimfett/subscriptions","organizations_url":"https://api.github.com/users/jakimfett/orgs","repos_url":"https://api.github.com/users/jakimfett/repos","events_url":"https://api.github.com/users/jakimfett/events{/privacy}","received_events_url":"https://api.github.com/users/jakimfett/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/jakimfett/AlchemyPlusPlus","description":"Expanded brewing system for Minecraft","fork":false,"url":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus","forks_url":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/forks","keys_url":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/keys{/key_id}","collaborators_url":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/teams","hooks_url":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/hooks","issue_events_url":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/issues/events{/number}","events_url":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/events","assignees_url":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/assignees{/user}","branches_url":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/branches{/branch}","tags_url":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/tags","blobs_url":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/git/refs{/sha}","trees_url":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/git/trees{/sha}","statuses_url":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/statuses/{sha}","languages_url":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/languages","stargazers_url":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/stargazers","contributors_url":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/contributors","subscribers_url":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/subscribers","subscription_url":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/subscription","commits_url":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/commits{/sha}","git_commits_url":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/git/commits{/sha}","comments_url":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/comments{/number}","issue_comment_url":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/issues/comments/{number}","contents_url":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/contents/{+path}","compare_url":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/compare/{base}...{head}","merges_url":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/merges","archive_url":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/downloads","issues_url":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/issues{/number}","pulls_url":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/pulls{/number}","milestones_url":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/milestones{/number}","notifications_url":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/labels{/name}","releases_url":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/releases{/id}","created_at":"2013-10-30T11:35:38Z","updated_at":"2014-12-24T19:36:13Z","pushed_at":"2014-12-24T19:36:13Z","git_url":"git://github.com/jakimfett/AlchemyPlusPlus.git","ssh_url":"git@github.com:jakimfett/AlchemyPlusPlus.git","clone_url":"https://github.com/jakimfett/AlchemyPlusPlus.git","svn_url":"https://github.com/jakimfett/AlchemyPlusPlus","homepage":"","size":2027,"stargazers_count":10,"watchers_count":10,"language":"Java","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":true,"forks_count":7,"mirror_url":null,"open_issues_count":2,"forks":7,"open_issues":2,"watchers":10,"default_branch":"1.7-update"}},"_links":{"self":{"href":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/pulls/28"},"html":{"href":"https://github.com/jakimfett/AlchemyPlusPlus/pull/28"},"issue":{"href":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/issues/28"},"comments":{"href":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/issues/28/comments"},"review_comments":{"href":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/pulls/28/comments"},"review_comment":{"href":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/pulls/28/commits"},"statuses":{"href":"https://api.github.com/repos/jakimfett/AlchemyPlusPlus/statuses/9b030b578f898458765d9be3d66553d3c619c16e"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":2,"additions":99,"deletions":2,"changed_files":2}},"public":true,"created_at":"2015-01-01T15:00:54Z"}
,{"id":"2489651520","type":"PushEvent","actor":{"id":716269,"login":"RoryCrispin","gravatar_id":"","url":"https://api.github.com/users/RoryCrispin","avatar_url":"https://avatars.githubusercontent.com/u/716269?"},"repo":{"id":22583389,"name":"RoryCrispin/chive","url":"https://api.github.com/repos/RoryCrispin/chive"},"payload":{"push_id":536864196,"size":3,"distinct_size":3,"ref":"refs/heads/newUI","head":"d21f5a2886103181e651300f8fff610eb44ae944","before":"1f93cbb717319a7f358248f3e08463f90e7497b9","commits":[{"sha":"9850fffbd8dada98976598a5e059bd1ae1a14eb8","author":{"email":"610dbf3f31251c2f1347437b7dedf1bcbcbda97e@gmail.com","name":"Rory Crispin"},"message":"Hover fixes","distinct":true,"url":"https://api.github.com/repos/RoryCrispin/chive/commits/9850fffbd8dada98976598a5e059bd1ae1a14eb8"},{"sha":"843e3ed5fe85fc857d987982495370b1032bf486","author":{"email":"b1c1d8736f20db3fb6c1c66bb1455ed43909f0d8@rorycrispin.co.uk","name":"Rory Crispin"},"message":"Merge remote-tracking branch 'origin/newUI' into newUI\n\nConflicts:\n\t.idea/workspace.xml\n\tcss/artist/artist_main.css\n\tcss/index/index.css\n\tcss/index/leftPane.css","distinct":true,"url":"https://api.github.com/repos/RoryCrispin/chive/commits/843e3ed5fe85fc857d987982495370b1032bf486"},{"sha":"d21f5a2886103181e651300f8fff610eb44ae944","author":{"email":"b1c1d8736f20db3fb6c1c66bb1455ed43909f0d8@rorycrispin.co.uk","name":"Rory Crispin"},"message":"Workkk","distinct":true,"url":"https://api.github.com/repos/RoryCrispin/chive/commits/d21f5a2886103181e651300f8fff610eb44ae944"}]},"public":true,"created_at":"2015-01-01T15:00:54Z"}
,{"id":"2489651521","type":"PushEvent","actor":{"id":2593193,"login":"misoobu","gravatar_id":"","url":"https://api.github.com/users/misoobu","avatar_url":"https://avatars.githubusercontent.com/u/2593193?"},"repo":{"id":28684853,"name":"misoobu/gree-community","url":"https://api.github.com/repos/misoobu/gree-community"},"payload":{"push_id":536864197,"size":1,"distinct_size":1,"ref":"refs/heads/adjust_new_html_format","head":"afcf1e2225d29f0087bb08e6c4d754502bd24f09","before":"df20a0e7221aa5c0e802858dbb727e9b72d61f59","commits":[{"sha":"afcf1e2225d29f0087bb08e6c4d754502bd24f09","author":{"email":"504acf256364d1b694a361eb47e224c44eb632f6@me.com","name":"misoobu"},"message":"adjust new html format (encoding)","distinct":true,"url":"https://api.github.com/repos/misoobu/gree-community/commits/afcf1e2225d29f0087bb08e6c4d754502bd24f09"}]},"public":true,"created_at":"2015-01-01T15:00:54Z"}
,{"id":"2489651522","type":"PushEvent","actor":{"id":9898422,"login":"superlucky84","gravatar_id":"","url":"https://api.github.com/users/superlucky84","avatar_url":"https://avatars.githubusercontent.com/u/9898422?"},"repo":{"id":26996267,"name":"superlucky84/superlucky","url":"https://api.github.com/repos/superlucky84/superlucky"},"payload":{"push_id":536864198,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"fcb3b327ad4f32ed17b82fc23036bb8e1e619ccc","before":"5bb90ab36a649487bc3143ee97392a1e82e43635","commits":[{"sha":"fcb3b327ad4f32ed17b82fc23036bb8e1e619ccc","author":{"email":"ef472836fe800ec78173ee4bff753e52ff094e51@gmail.com","name":"root"},"message":"board job","distinct":true,"url":"https://api.github.com/repos/superlucky84/superlucky/commits/fcb3b327ad4f32ed17b82fc23036bb8e1e619ccc"}]},"public":true,"created_at":"2015-01-01T15:00:54Z"}
,{"id":"2489651524","type":"PushEvent","actor":{"id":112486,"login":"ehartmann","gravatar_id":"","url":"https://api.github.com/users/ehartmann","avatar_url":"https://avatars.githubusercontent.com/u/112486?"},"repo":{"id":28660592,"name":"ElsaBonnaud/WebSite","url":"https://api.github.com/repos/ElsaBonnaud/WebSite"},"payload":{"push_id":536864199,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"a245f2ede928a3045dc96100c175b25713efa654","before":"638fab26bf628db20f83a0e7e3a0ff012e6ed64c","commits":[{"sha":"a245f2ede928a3045dc96100c175b25713efa654","author":{"email":"87c01f2a11d6af298dcc61e432606186023760d0@gmail.com","name":"Eric Hartmann"},"message":"Add up.sh","distinct":true,"url":"https://api.github.com/repos/ElsaBonnaud/WebSite/commits/a245f2ede928a3045dc96100c175b25713efa654"}]},"public":true,"created_at":"2015-01-01T15:00:55Z"}
,{"id":"2489651526","type":"WatchEvent","actor":{"id":8642435,"login":"i8s301a","gravatar_id":"","url":"https://api.github.com/users/i8s301a","avatar_url":"https://avatars.githubusercontent.com/u/8642435?"},"repo":{"id":3407328,"name":"kiminozo/BgmOnWp","url":"https://api.github.com/repos/kiminozo/BgmOnWp"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:00:56Z"}
,{"id":"2489651527","type":"WatchEvent","actor":{"id":52318,"login":"andyduke","gravatar_id":"","url":"https://api.github.com/users/andyduke","avatar_url":"https://avatars.githubusercontent.com/u/52318?"},"repo":{"id":12025365,"name":"toddmotto/echo","url":"https://api.github.com/repos/toddmotto/echo"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:00:56Z"}
,{"id":"2489651532","type":"ReleaseEvent","actor":{"id":728958,"login":"Oderik","gravatar_id":"","url":"https://api.github.com/users/Oderik","avatar_url":"https://avatars.githubusercontent.com/u/728958?"},"repo":{"id":18946463,"name":"Oderik/xbmc-somafm","url":"https://api.github.com/repos/Oderik/xbmc-somafm"},"payload":{"action":"published","release":{"url":"https://api.github.com/repos/Oderik/xbmc-somafm/releases/818677","assets_url":"https://api.github.com/repos/Oderik/xbmc-somafm/releases/818677/assets","upload_url":"https://uploads.github.com/repos/Oderik/xbmc-somafm/releases/818677/assets{?name}","html_url":"https://github.com/Oderik/xbmc-somafm/releases/tag/v1.0.1","id":818677,"tag_name":"v1.0.1","target_commitish":"master","name":"Fix playback on Android","draft":false,"author":{"login":"Oderik","id":728958,"avatar_url":"https://avatars.githubusercontent.com/u/728958?v=3","gravatar_id":"","url":"https://api.github.com/users/Oderik","html_url":"https://github.com/Oderik","followers_url":"https://api.github.com/users/Oderik/followers","following_url":"https://api.github.com/users/Oderik/following{/other_user}","gists_url":"https://api.github.com/users/Oderik/gists{/gist_id}","starred_url":"https://api.github.com/users/Oderik/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Oderik/subscriptions","organizations_url":"https://api.github.com/users/Oderik/orgs","repos_url":"https://api.github.com/users/Oderik/repos","events_url":"https://api.github.com/users/Oderik/events{/privacy}","received_events_url":"https://api.github.com/users/Oderik/received_events","type":"User","site_admin":false},"prerelease":false,"created_at":"2015-01-01T14:56:33Z","published_at":"2015-01-01T15:00:56Z","assets":[],"tarball_url":"https://api.github.com/repos/Oderik/xbmc-somafm/tarball/v1.0.1","zipball_url":"https://api.github.com/repos/Oderik/xbmc-somafm/zipball/v1.0.1","body":"Use fallback if certain XML parsing fails. This is quite a dirty hotfix for an issue occuring on Kodi for Android due to an old version of python"}},"public":true,"created_at":"2015-01-01T15:00:56Z"}
,{"id":"2489651533","type":"CreateEvent","actor":{"id":728958,"login":"Oderik","gravatar_id":"","url":"https://api.github.com/users/Oderik","avatar_url":"https://avatars.githubusercontent.com/u/728958?"},"repo":{"id":18946463,"name":"Oderik/xbmc-somafm","url":"https://api.github.com/repos/Oderik/xbmc-somafm"},"payload":{"ref":"v1.0.1","ref_type":"tag","master_branch":"master","description":"SomaFM Plugin for XBMC","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:00:56Z"}
,{"id":"2489651534","type":"PushEvent","actor":{"id":8837415,"login":"sarinasalim","gravatar_id":"","url":"https://api.github.com/users/sarinasalim","avatar_url":"https://avatars.githubusercontent.com/u/8837415?"},"repo":{"id":24245833,"name":"Learningroots/www_src","url":"https://api.github.com/repos/Learningroots/www_src"},"payload":{"push_id":536864202,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"4603b8e286c87f9510eea0f675375bc241489b09","before":"4c9fce483800385b7eabc1f815e43ce1ad1e70e4","commits":[{"sha":"4603b8e286c87f9510eea0f675375bc241489b09","author":{"email":"8a37ec473379fa8bd80487aa11cf30a943f6d0f1@gmail.com","name":"sarinasalim"},"message":"MailChimp setup for newsletters\nhttps://app.asana.com/0/22988389214210/22145625010440","distinct":true,"url":"https://api.github.com/repos/Learningroots/www_src/commits/4603b8e286c87f9510eea0f675375bc241489b09"}]},"public":true,"created_at":"2015-01-01T15:00:56Z","org":{"id":8837436,"login":"Learningroots","gravatar_id":"","url":"https://api.github.com/orgs/Learningroots","avatar_url":"https://avatars.githubusercontent.com/u/8837436?"}}
,{"id":"2489651537","type":"PushEvent","actor":{"id":1725475,"login":"qianlifeng","gravatar_id":"","url":"https://api.github.com/users/qianlifeng","avatar_url":"https://avatars.githubusercontent.com/u/1725475?"},"repo":{"id":18005959,"name":"qianlifeng/Wox.Plugin.Everything","url":"https://api.github.com/repos/qianlifeng/Wox.Plugin.Everything"},"payload":{"push_id":536864204,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"db9b24528e38e384f40716dd50cfe2e64eee362c","before":"88e8bcce5e194c1067e1444290dea4e41190a12c","commits":[{"sha":"db9b24528e38e384f40716dd50cfe2e64eee362c","author":{"email":"8d358f8bee2d734157d908bc67029a31cccfd821@163.com","name":"qianlifeng"},"message":"add context menu","distinct":true,"url":"https://api.github.com/repos/qianlifeng/Wox.Plugin.Everything/commits/db9b24528e38e384f40716dd50cfe2e64eee362c"}]},"public":true,"created_at":"2015-01-01T15:00:57Z"}
,{"id":"2489651543","type":"DeleteEvent","actor":{"id":1646422,"login":"brunocarvalhodearaujo","gravatar_id":"","url":"https://api.github.com/users/brunocarvalhodearaujo","avatar_url":"https://avatars.githubusercontent.com/u/1646422?"},"repo":{"id":28688285,"name":"brunocarvalhodearaujo/datastore","url":"https://api.github.com/repos/brunocarvalhodearaujo/datastore"},"payload":{"ref":"0.3","ref_type":"branch","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:00:58Z"}
,{"id":"2489651544","type":"PushEvent","actor":{"id":6265848,"login":"horatiothomas","gravatar_id":"","url":"https://api.github.com/users/horatiothomas","avatar_url":"https://avatars.githubusercontent.com/u/6265848?"},"repo":{"id":28661096,"name":"qkalantary/Antswer","url":"https://api.github.com/repos/qkalantary/Antswer"},"payload":{"push_id":536864210,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"aac0581a1ff4e0ad8b6f730daf390647c96aaee2","before":"52bb989cea9b74daf50329afbba4273868fe8aba","commits":[{"sha":"aac0581a1ff4e0ad8b6f730daf390647c96aaee2","author":{"email":"98c20188b83c25b65c31c78947aa3d5fd78bb4ce@Horatios-Air.home","name":"Horatio Thomas"},"message":"Added services","distinct":true,"url":"https://api.github.com/repos/qkalantary/Antswer/commits/aac0581a1ff4e0ad8b6f730daf390647c96aaee2"}]},"public":true,"created_at":"2015-01-01T15:00:58Z"}
,{"id":"2489651553","type":"PullRequestEvent","actor":{"id":1144873,"login":"greysteil","gravatar_id":"","url":"https://api.github.com/users/greysteil","avatar_url":"https://avatars.githubusercontent.com/u/1144873?"},"repo":{"id":28648149,"name":"gocardless/activejob-retry","url":"https://api.github.com/repos/gocardless/activejob-retry"},"payload":{"action":"opened","number":5,"pull_request":{"url":"https://api.github.com/repos/gocardless/activejob-retry/pulls/5","id":26743776,"html_url":"https://github.com/gocardless/activejob-retry/pull/5","diff_url":"https://github.com/gocardless/activejob-retry/pull/5.diff","patch_url":"https://github.com/gocardless/activejob-retry/pull/5.patch","issue_url":"https://api.github.com/repos/gocardless/activejob-retry/issues/5","number":5,"state":"open","locked":false,"title":"Check adapter is supported","user":{"login":"greysteil","id":1144873,"avatar_url":"https://avatars.githubusercontent.com/u/1144873?v=3","gravatar_id":"","url":"https://api.github.com/users/greysteil","html_url":"https://github.com/greysteil","followers_url":"https://api.github.com/users/greysteil/followers","following_url":"https://api.github.com/users/greysteil/following{/other_user}","gists_url":"https://api.github.com/users/greysteil/gists{/gist_id}","starred_url":"https://api.github.com/users/greysteil/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/greysteil/subscriptions","organizations_url":"https://api.github.com/users/greysteil/orgs","repos_url":"https://api.github.com/users/greysteil/repos","events_url":"https://api.github.com/users/greysteil/events{/privacy}","received_events_url":"https://api.github.com/users/greysteil/received_events","type":"User","site_admin":false},"body":"Cleans up previous implementation so specs pass.","created_at":"2015-01-01T15:00:59Z","updated_at":"2015-01-01T15:00:59Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/gocardless/activejob-retry/pulls/5/commits","review_comments_url":"https://api.github.com/repos/gocardless/activejob-retry/pulls/5/comments","review_comment_url":"https://api.github.com/repos/gocardless/activejob-retry/pulls/comments/{number}","comments_url":"https://api.github.com/repos/gocardless/activejob-retry/issues/5/comments","statuses_url":"https://api.github.com/repos/gocardless/activejob-retry/statuses/f95beaa7e5f3ed25a33798ca90dacc9d6dc21c51","head":{"label":"gocardless:check-adapter-supported","ref":"check-adapter-supported","sha":"f95beaa7e5f3ed25a33798ca90dacc9d6dc21c51","user":{"login":"gocardless","id":790629,"avatar_url":"https://avatars.githubusercontent.com/u/790629?v=3","gravatar_id":"","url":"https://api.github.com/users/gocardless","html_url":"https://github.com/gocardless","followers_url":"https://api.github.com/users/gocardless/followers","following_url":"https://api.github.com/users/gocardless/following{/other_user}","gists_url":"https://api.github.com/users/gocardless/gists{/gist_id}","starred_url":"https://api.github.com/users/gocardless/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gocardless/subscriptions","organizations_url":"https://api.github.com/users/gocardless/orgs","repos_url":"https://api.github.com/users/gocardless/repos","events_url":"https://api.github.com/users/gocardless/events{/privacy}","received_events_url":"https://api.github.com/users/gocardless/received_events","type":"Organization","site_admin":false},"repo":{"id":28648149,"name":"activejob-retry","full_name":"gocardless/activejob-retry","owner":{"login":"gocardless","id":790629,"avatar_url":"https://avatars.githubusercontent.com/u/790629?v=3","gravatar_id":"","url":"https://api.github.com/users/gocardless","html_url":"https://github.com/gocardless","followers_url":"https://api.github.com/users/gocardless/followers","following_url":"https://api.github.com/users/gocardless/following{/other_user}","gists_url":"https://api.github.com/users/gocardless/gists{/gist_id}","starred_url":"https://api.github.com/users/gocardless/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gocardless/subscriptions","organizations_url":"https://api.github.com/users/gocardless/orgs","repos_url":"https://api.github.com/users/gocardless/repos","events_url":"https://api.github.com/users/gocardless/events{/privacy}","received_events_url":"https://api.github.com/users/gocardless/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/gocardless/activejob-retry","description":"Automatic retries for ActiveJob","fork":false,"url":"https://api.github.com/repos/gocardless/activejob-retry","forks_url":"https://api.github.com/repos/gocardless/activejob-retry/forks","keys_url":"https://api.github.com/repos/gocardless/activejob-retry/keys{/key_id}","collaborators_url":"https://api.github.com/repos/gocardless/activejob-retry/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/gocardless/activejob-retry/teams","hooks_url":"https://api.github.com/repos/gocardless/activejob-retry/hooks","issue_events_url":"https://api.github.com/repos/gocardless/activejob-retry/issues/events{/number}","events_url":"https://api.github.com/repos/gocardless/activejob-retry/events","assignees_url":"https://api.github.com/repos/gocardless/activejob-retry/assignees{/user}","branches_url":"https://api.github.com/repos/gocardless/activejob-retry/branches{/branch}","tags_url":"https://api.github.com/repos/gocardless/activejob-retry/tags","blobs_url":"https://api.github.com/repos/gocardless/activejob-retry/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/gocardless/activejob-retry/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/gocardless/activejob-retry/git/refs{/sha}","trees_url":"https://api.github.com/repos/gocardless/activejob-retry/git/trees{/sha}","statuses_url":"https://api.github.com/repos/gocardless/activejob-retry/statuses/{sha}","languages_url":"https://api.github.com/repos/gocardless/activejob-retry/languages","stargazers_url":"https://api.github.com/repos/gocardless/activejob-retry/stargazers","contributors_url":"https://api.github.com/repos/gocardless/activejob-retry/contributors","subscribers_url":"https://api.github.com/repos/gocardless/activejob-retry/subscribers","subscription_url":"https://api.github.com/repos/gocardless/activejob-retry/subscription","commits_url":"https://api.github.com/repos/gocardless/activejob-retry/commits{/sha}","git_commits_url":"https://api.github.com/repos/gocardless/activejob-retry/git/commits{/sha}","comments_url":"https://api.github.com/repos/gocardless/activejob-retry/comments{/number}","issue_comment_url":"https://api.github.com/repos/gocardless/activejob-retry/issues/comments/{number}","contents_url":"https://api.github.com/repos/gocardless/activejob-retry/contents/{+path}","compare_url":"https://api.github.com/repos/gocardless/activejob-retry/compare/{base}...{head}","merges_url":"https://api.github.com/repos/gocardless/activejob-retry/merges","archive_url":"https://api.github.com/repos/gocardless/activejob-retry/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/gocardless/activejob-retry/downloads","issues_url":"https://api.github.com/repos/gocardless/activejob-retry/issues{/number}","pulls_url":"https://api.github.com/repos/gocardless/activejob-retry/pulls{/number}","milestones_url":"https://api.github.com/repos/gocardless/activejob-retry/milestones{/number}","notifications_url":"https://api.github.com/repos/gocardless/activejob-retry/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/gocardless/activejob-retry/labels{/name}","releases_url":"https://api.github.com/repos/gocardless/activejob-retry/releases{/id}","created_at":"2014-12-30T22:46:41Z","updated_at":"2015-01-01T14:31:50Z","pushed_at":"2015-01-01T15:00:47Z","git_url":"git://github.com/gocardless/activejob-retry.git","ssh_url":"git@github.com:gocardless/activejob-retry.git","clone_url":"https://github.com/gocardless/activejob-retry.git","svn_url":"https://github.com/gocardless/activejob-retry","homepage":null,"size":0,"stargazers_count":0,"watchers_count":0,"language":"Ruby","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":1,"forks":0,"open_issues":1,"watchers":0,"default_branch":"master"}},"base":{"label":"gocardless:master","ref":"master","sha":"26f1f1fb98b689a9c72f62ab81fbd86b555e9650","user":{"login":"gocardless","id":790629,"avatar_url":"https://avatars.githubusercontent.com/u/790629?v=3","gravatar_id":"","url":"https://api.github.com/users/gocardless","html_url":"https://github.com/gocardless","followers_url":"https://api.github.com/users/gocardless/followers","following_url":"https://api.github.com/users/gocardless/following{/other_user}","gists_url":"https://api.github.com/users/gocardless/gists{/gist_id}","starred_url":"https://api.github.com/users/gocardless/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gocardless/subscriptions","organizations_url":"https://api.github.com/users/gocardless/orgs","repos_url":"https://api.github.com/users/gocardless/repos","events_url":"https://api.github.com/users/gocardless/events{/privacy}","received_events_url":"https://api.github.com/users/gocardless/received_events","type":"Organization","site_admin":false},"repo":{"id":28648149,"name":"activejob-retry","full_name":"gocardless/activejob-retry","owner":{"login":"gocardless","id":790629,"avatar_url":"https://avatars.githubusercontent.com/u/790629?v=3","gravatar_id":"","url":"https://api.github.com/users/gocardless","html_url":"https://github.com/gocardless","followers_url":"https://api.github.com/users/gocardless/followers","following_url":"https://api.github.com/users/gocardless/following{/other_user}","gists_url":"https://api.github.com/users/gocardless/gists{/gist_id}","starred_url":"https://api.github.com/users/gocardless/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gocardless/subscriptions","organizations_url":"https://api.github.com/users/gocardless/orgs","repos_url":"https://api.github.com/users/gocardless/repos","events_url":"https://api.github.com/users/gocardless/events{/privacy}","received_events_url":"https://api.github.com/users/gocardless/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/gocardless/activejob-retry","description":"Automatic retries for ActiveJob","fork":false,"url":"https://api.github.com/repos/gocardless/activejob-retry","forks_url":"https://api.github.com/repos/gocardless/activejob-retry/forks","keys_url":"https://api.github.com/repos/gocardless/activejob-retry/keys{/key_id}","collaborators_url":"https://api.github.com/repos/gocardless/activejob-retry/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/gocardless/activejob-retry/teams","hooks_url":"https://api.github.com/repos/gocardless/activejob-retry/hooks","issue_events_url":"https://api.github.com/repos/gocardless/activejob-retry/issues/events{/number}","events_url":"https://api.github.com/repos/gocardless/activejob-retry/events","assignees_url":"https://api.github.com/repos/gocardless/activejob-retry/assignees{/user}","branches_url":"https://api.github.com/repos/gocardless/activejob-retry/branches{/branch}","tags_url":"https://api.github.com/repos/gocardless/activejob-retry/tags","blobs_url":"https://api.github.com/repos/gocardless/activejob-retry/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/gocardless/activejob-retry/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/gocardless/activejob-retry/git/refs{/sha}","trees_url":"https://api.github.com/repos/gocardless/activejob-retry/git/trees{/sha}","statuses_url":"https://api.github.com/repos/gocardless/activejob-retry/statuses/{sha}","languages_url":"https://api.github.com/repos/gocardless/activejob-retry/languages","stargazers_url":"https://api.github.com/repos/gocardless/activejob-retry/stargazers","contributors_url":"https://api.github.com/repos/gocardless/activejob-retry/contributors","subscribers_url":"https://api.github.com/repos/gocardless/activejob-retry/subscribers","subscription_url":"https://api.github.com/repos/gocardless/activejob-retry/subscription","commits_url":"https://api.github.com/repos/gocardless/activejob-retry/commits{/sha}","git_commits_url":"https://api.github.com/repos/gocardless/activejob-retry/git/commits{/sha}","comments_url":"https://api.github.com/repos/gocardless/activejob-retry/comments{/number}","issue_comment_url":"https://api.github.com/repos/gocardless/activejob-retry/issues/comments/{number}","contents_url":"https://api.github.com/repos/gocardless/activejob-retry/contents/{+path}","compare_url":"https://api.github.com/repos/gocardless/activejob-retry/compare/{base}...{head}","merges_url":"https://api.github.com/repos/gocardless/activejob-retry/merges","archive_url":"https://api.github.com/repos/gocardless/activejob-retry/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/gocardless/activejob-retry/downloads","issues_url":"https://api.github.com/repos/gocardless/activejob-retry/issues{/number}","pulls_url":"https://api.github.com/repos/gocardless/activejob-retry/pulls{/number}","milestones_url":"https://api.github.com/repos/gocardless/activejob-retry/milestones{/number}","notifications_url":"https://api.github.com/repos/gocardless/activejob-retry/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/gocardless/activejob-retry/labels{/name}","releases_url":"https://api.github.com/repos/gocardless/activejob-retry/releases{/id}","created_at":"2014-12-30T22:46:41Z","updated_at":"2015-01-01T14:31:50Z","pushed_at":"2015-01-01T15:00:47Z","git_url":"git://github.com/gocardless/activejob-retry.git","ssh_url":"git@github.com:gocardless/activejob-retry.git","clone_url":"https://github.com/gocardless/activejob-retry.git","svn_url":"https://github.com/gocardless/activejob-retry","homepage":null,"size":0,"stargazers_count":0,"watchers_count":0,"language":"Ruby","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":1,"forks":0,"open_issues":1,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/gocardless/activejob-retry/pulls/5"},"html":{"href":"https://github.com/gocardless/activejob-retry/pull/5"},"issue":{"href":"https://api.github.com/repos/gocardless/activejob-retry/issues/5"},"comments":{"href":"https://api.github.com/repos/gocardless/activejob-retry/issues/5/comments"},"review_comments":{"href":"https://api.github.com/repos/gocardless/activejob-retry/pulls/5/comments"},"review_comment":{"href":"https://api.github.com/repos/gocardless/activejob-retry/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/gocardless/activejob-retry/pulls/5/commits"},"statuses":{"href":"https://api.github.com/repos/gocardless/activejob-retry/statuses/f95beaa7e5f3ed25a33798ca90dacc9d6dc21c51"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":1,"additions":15,"deletions":11,"changed_files":5}},"public":true,"created_at":"2015-01-01T15:00:59Z","org":{"id":790629,"login":"gocardless","gravatar_id":"","url":"https://api.github.com/orgs/gocardless","avatar_url":"https://avatars.githubusercontent.com/u/790629?"}}
,{"id":"2489651570","type":"IssueCommentEvent","actor":{"id":7194491,"login":"BackSlasher","gravatar_id":"","url":"https://api.github.com/users/BackSlasher","avatar_url":"https://avatars.githubusercontent.com/u/7194491?"},"repo":{"id":4056288,"name":"opscode/omnibus-chef","url":"https://api.github.com/repos/opscode/omnibus-chef"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/opscode/omnibus-chef/issues/319","labels_url":"https://api.github.com/repos/opscode/omnibus-chef/issues/319/labels{/name}","comments_url":"https://api.github.com/repos/opscode/omnibus-chef/issues/319/comments","events_url":"https://api.github.com/repos/opscode/omnibus-chef/issues/319/events","html_url":"https://github.com/opscode/omnibus-chef/issues/319","id":53215487,"number":319,"title":"Symbolic links for knife etc conflict when installing ChefDK and Chef Client","user":{"login":"BackSlasher","id":7194491,"avatar_url":"https://avatars.githubusercontent.com/u/7194491?v=3","gravatar_id":"","url":"https://api.github.com/users/BackSlasher","html_url":"https://github.com/BackSlasher","followers_url":"https://api.github.com/users/BackSlasher/followers","following_url":"https://api.github.com/users/BackSlasher/following{/other_user}","gists_url":"https://api.github.com/users/BackSlasher/gists{/gist_id}","starred_url":"https://api.github.com/users/BackSlasher/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/BackSlasher/subscriptions","organizations_url":"https://api.github.com/users/BackSlasher/orgs","repos_url":"https://api.github.com/users/BackSlasher/repos","events_url":"https://api.github.com/users/BackSlasher/events{/privacy}","received_events_url":"https://api.github.com/users/BackSlasher/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":2,"created_at":"2015-01-01T08:15:03Z","updated_at":"2015-01-01T15:01:02Z","closed_at":"2015-01-01T14:31:08Z","body":"When running Ubuntu 14.04, After installing the following in that order:\r\n* Chef client latest (12.0.3-1)\r\n* ChefDK latest (0.3.5)\r\n\r\nAnd running `knife --version`, I get version 11. \r\nThis is an issue because after installing ChefDK, I was unable to bootstrap Chef 12 clients (because Knife 11 wouldn't copy self-signed certificates like Knife 12 does).\r\n\r\nThis is because both packages include knife, and each is overwriting `/usr/bin/knife`, meaning the last installed product \"wins\".\r\nInstead of using [`ln -sf`](https://github.com/opscode/omnibus-chef/blob/master/package-scripts/chefdk/postinst#L39), one could use [Debian alternatives](https://www.debian-administration.org/article/91/Using_the_Debian_alternatives_system), allowing both Knife versions from ChefDK and Chef Client to coexist.\r\nOr one can avoid overwriting the link if it points to a newer version."},"comment":{"url":"https://api.github.com/repos/opscode/omnibus-chef/issues/comments/68488509","html_url":"https://github.com/opscode/omnibus-chef/issues/319#issuecomment-68488509","issue_url":"https://api.github.com/repos/opscode/omnibus-chef/issues/319","id":68488509,"user":{"login":"BackSlasher","id":7194491,"avatar_url":"https://avatars.githubusercontent.com/u/7194491?v=3","gravatar_id":"","url":"https://api.github.com/users/BackSlasher","html_url":"https://github.com/BackSlasher","followers_url":"https://api.github.com/users/BackSlasher/followers","following_url":"https://api.github.com/users/BackSlasher/following{/other_user}","gists_url":"https://api.github.com/users/BackSlasher/gists{/gist_id}","starred_url":"https://api.github.com/users/BackSlasher/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/BackSlasher/subscriptions","organizations_url":"https://api.github.com/users/BackSlasher/orgs","repos_url":"https://api.github.com/users/BackSlasher/repos","events_url":"https://api.github.com/users/BackSlasher/events{/privacy}","received_events_url":"https://api.github.com/users/BackSlasher/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:01:02Z","updated_at":"2015-01-01T15:01:02Z","body":"@lamont-granquist I think this issue will reoccur the next time there's a functional difference between the latest client and the latest DK. Don't you think the installation script should at least print an error when there's an existing (and valid) symlink?\r\n\r\nI'll be happy to help, I just want to get your idea of what's a good solution before I work on it."}},"public":true,"created_at":"2015-01-01T15:01:02Z","org":{"id":29740,"login":"opscode","gravatar_id":"","url":"https://api.github.com/orgs/opscode","avatar_url":"https://avatars.githubusercontent.com/u/29740?"}}
,{"id":"2489651573","type":"WatchEvent","actor":{"id":5869219,"login":"dacenter","gravatar_id":"","url":"https://api.github.com/users/dacenter","avatar_url":"https://avatars.githubusercontent.com/u/5869219?"},"repo":{"id":28688611,"name":"Realcraft/Realcraft","url":"https://api.github.com/repos/Realcraft/Realcraft"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:01:03Z","org":{"id":10364754,"login":"Realcraft","gravatar_id":"","url":"https://api.github.com/orgs/Realcraft","avatar_url":"https://avatars.githubusercontent.com/u/10364754?"}}
,{"id":"2489651575","type":"IssueCommentEvent","actor":{"id":23058,"login":"davydotcom","gravatar_id":"","url":"https://api.github.com/users/davydotcom","avatar_url":"https://avatars.githubusercontent.com/u/23058?"},"repo":{"id":7763363,"name":"ratpack/ratpack","url":"https://api.github.com/repos/ratpack/ratpack"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/ratpack/ratpack/issues/537","labels_url":"https://api.github.com/repos/ratpack/ratpack/issues/537/labels{/name}","comments_url":"https://api.github.com/repos/ratpack/ratpack/issues/537/comments","events_url":"https://api.github.com/repos/ratpack/ratpack/issues/537/events","html_url":"https://github.com/ratpack/ratpack/issues/537","id":53108739,"number":537,"title":"Improved configurability of asset handler","user":{"login":"alkemist","id":17825,"avatar_url":"https://avatars.githubusercontent.com/u/17825?v=3","gravatar_id":"","url":"https://api.github.com/users/alkemist","html_url":"https://github.com/alkemist","followers_url":"https://api.github.com/users/alkemist/followers","following_url":"https://api.github.com/users/alkemist/following{/other_user}","gists_url":"https://api.github.com/users/alkemist/gists{/gist_id}","starred_url":"https://api.github.com/users/alkemist/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/alkemist/subscriptions","organizations_url":"https://api.github.com/users/alkemist/orgs","repos_url":"https://api.github.com/users/alkemist/repos","events_url":"https://api.github.com/users/alkemist/events{/privacy}","received_events_url":"https://api.github.com/users/alkemist/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/ratpack/ratpack/labels/good-first-contrib","name":"good-first-contrib","color":"00c5fe"}],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":4,"created_at":"2014-12-30T11:08:31Z","updated_at":"2015-01-01T15:01:03Z","closed_at":null,"body":"Our asset handling is too simplistic. I'd like to change things around to make the asset handling more configurable, by introducing a builder for asset handlers.\r\n\r\nWe should introduce…\r\n\r\n```\r\npackage ratpack.file\r\n\r\ninterface AssetHandlerSpec {\r\n AssetHandlerSpec compressionMinSize(int bytes)\r\n AssetHandlerSpec indexFiles(String... indexFiles)\r\n AssetHandlerSpec noCompress(String mimeTypes)\r\n}\r\n```\r\n\r\nThe asset handler method on `Handlers` and corresponding `Chain` method will change to…\r\n\r\n```\r\nHandler assets(LaunchConfig launchConfig, String path, Action<? super AssetHandlerSpec> config)\r\n```\r\n\r\nWe can then remove the related items from launch config.\r\n\r\nThis will also require some reworking of the file serving internals to support more decisions being made about how to render the file at the handler level instead of the internal transmitter.\r\n"},"comment":{"url":"https://api.github.com/repos/ratpack/ratpack/issues/comments/68488510","html_url":"https://github.com/ratpack/ratpack/issues/537#issuecomment-68488510","issue_url":"https://api.github.com/repos/ratpack/ratpack/issues/537","id":68488510,"user":{"login":"davydotcom","id":23058,"avatar_url":"https://avatars.githubusercontent.com/u/23058?v=3","gravatar_id":"","url":"https://api.github.com/users/davydotcom","html_url":"https://github.com/davydotcom","followers_url":"https://api.github.com/users/davydotcom/followers","following_url":"https://api.github.com/users/davydotcom/following{/other_user}","gists_url":"https://api.github.com/users/davydotcom/gists{/gist_id}","starred_url":"https://api.github.com/users/davydotcom/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/davydotcom/subscriptions","organizations_url":"https://api.github.com/users/davydotcom/orgs","repos_url":"https://api.github.com/users/davydotcom/repos","events_url":"https://api.github.com/users/davydotcom/events{/privacy}","received_events_url":"https://api.github.com/users/davydotcom/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:01:03Z","updated_at":"2015-01-01T15:01:03Z","body":"Are you going to compress files on the fly? Might be better to quit create gz versions when packaging up so you don't have the load on servers from gripping "}},"public":true,"created_at":"2015-01-01T15:01:03Z","org":{"id":3344496,"login":"ratpack","gravatar_id":"","url":"https://api.github.com/orgs/ratpack","avatar_url":"https://avatars.githubusercontent.com/u/3344496?"}}
,{"id":"2489651576","type":"GollumEvent","actor":{"id":2254431,"login":"osler","gravatar_id":"","url":"https://api.github.com/users/osler","avatar_url":"https://avatars.githubusercontent.com/u/2254431?"},"repo":{"id":28687819,"name":"osler/World-of-Warcraft-Modding","url":"https://api.github.com/repos/osler/World-of-Warcraft-Modding"},"payload":{"pages":[{"page_name":"_Sidebar","title":"_Sidebar","summary":null,"action":"edited","sha":"69f2fffebae94f23c45b5ee867e4dec1041789e7","html_url":"https://github.com/osler/World-of-Warcraft-Modding/wiki/_Sidebar"}]},"public":true,"created_at":"2015-01-01T15:01:03Z"}
,{"id":"2489651582","type":"IssueCommentEvent","actor":{"id":3431139,"login":"ty221","gravatar_id":"","url":"https://api.github.com/users/ty221","avatar_url":"https://avatars.githubusercontent.com/u/3431139?"},"repo":{"id":21477900,"name":"fossasia/fossasia15","url":"https://api.github.com/repos/fossasia/fossasia15"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/fossasia/fossasia15/issues/4","labels_url":"https://api.github.com/repos/fossasia/fossasia15/issues/4/labels{/name}","comments_url":"https://api.github.com/repos/fossasia/fossasia15/issues/4/comments","events_url":"https://api.github.com/repos/fossasia/fossasia15/issues/4/events","html_url":"https://github.com/fossasia/fossasia15/pull/4","id":53218335,"number":4,"title":"Improved and optimized all pictures of organizers and spakers","user":{"login":"ty221","id":3431139,"avatar_url":"https://avatars.githubusercontent.com/u/3431139?v=3","gravatar_id":"","url":"https://api.github.com/users/ty221","html_url":"https://github.com/ty221","followers_url":"https://api.github.com/users/ty221/followers","following_url":"https://api.github.com/users/ty221/following{/other_user}","gists_url":"https://api.github.com/users/ty221/gists{/gist_id}","starred_url":"https://api.github.com/users/ty221/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ty221/subscriptions","organizations_url":"https://api.github.com/users/ty221/orgs","repos_url":"https://api.github.com/users/ty221/repos","events_url":"https://api.github.com/users/ty221/events{/privacy}","received_events_url":"https://api.github.com/users/ty221/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":2,"created_at":"2015-01-01T11:58:59Z","updated_at":"2015-01-01T15:01:03Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/fossasia/fossasia15/pulls/4","html_url":"https://github.com/fossasia/fossasia15/pull/4","diff_url":"https://github.com/fossasia/fossasia15/pull/4.diff","patch_url":"https://github.com/fossasia/fossasia15/pull/4.patch"},"body":"https://www.google-melange.com/gci/task/view/google/gci2014/5839599284781056"},"comment":{"url":"https://api.github.com/repos/fossasia/fossasia15/issues/comments/68488511","html_url":"https://github.com/fossasia/fossasia15/pull/4#issuecomment-68488511","issue_url":"https://api.github.com/repos/fossasia/fossasia15/issues/4","id":68488511,"user":{"login":"ty221","id":3431139,"avatar_url":"https://avatars.githubusercontent.com/u/3431139?v=3","gravatar_id":"","url":"https://api.github.com/users/ty221","html_url":"https://github.com/ty221","followers_url":"https://api.github.com/users/ty221/followers","following_url":"https://api.github.com/users/ty221/following{/other_user}","gists_url":"https://api.github.com/users/ty221/gists{/gist_id}","starred_url":"https://api.github.com/users/ty221/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ty221/subscriptions","organizations_url":"https://api.github.com/users/ty221/orgs","repos_url":"https://api.github.com/users/ty221/repos","events_url":"https://api.github.com/users/ty221/events{/privacy}","received_events_url":"https://api.github.com/users/ty221/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:01:03Z","updated_at":"2015-01-01T15:01:03Z","body":"Now everywhere size is exactly 300*300"}},"public":true,"created_at":"2015-01-01T15:01:04Z","org":{"id":6295529,"login":"fossasia","gravatar_id":"","url":"https://api.github.com/orgs/fossasia","avatar_url":"https://avatars.githubusercontent.com/u/6295529?"}}
,{"id":"2489651584","type":"IssueCommentEvent","actor":{"id":1909317,"login":"Woseseltops","gravatar_id":"","url":"https://api.github.com/users/Woseseltops","avatar_url":"https://avatars.githubusercontent.com/u/1909317?"},"repo":{"id":28224290,"name":"Woseseltops/signbank","url":"https://api.github.com/repos/Woseseltops/signbank"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/Woseseltops/signbank/issues/7","labels_url":"https://api.github.com/repos/Woseseltops/signbank/issues/7/labels{/name}","comments_url":"https://api.github.com/repos/Woseseltops/signbank/issues/7/comments","events_url":"https://api.github.com/repos/Woseseltops/signbank/issues/7/events","html_url":"https://github.com/Woseseltops/signbank/issues/7","id":52469797,"number":7,"title":"For all fields, the choices should be ordered alphabetically","user":{"login":"Woseseltops","id":1909317,"avatar_url":"https://avatars.githubusercontent.com/u/1909317?v=3","gravatar_id":"","url":"https://api.github.com/users/Woseseltops","html_url":"https://github.com/Woseseltops","followers_url":"https://api.github.com/users/Woseseltops/followers","following_url":"https://api.github.com/users/Woseseltops/following{/other_user}","gists_url":"https://api.github.com/users/Woseseltops/gists{/gist_id}","starred_url":"https://api.github.com/users/Woseseltops/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Woseseltops/subscriptions","organizations_url":"https://api.github.com/users/Woseseltops/orgs","repos_url":"https://api.github.com/users/Woseseltops/repos","events_url":"https://api.github.com/users/Woseseltops/events{/privacy}","received_events_url":"https://api.github.com/users/Woseseltops/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/Woseseltops/signbank/labels/enhancement","name":"enhancement","color":"84b6eb"},{"url":"https://api.github.com/repos/Woseseltops/signbank/labels/top+priority","name":"top priority","color":"e11d21"}],"state":"open","locked":false,"assignee":null,"milestone":{"url":"https://api.github.com/repos/Woseseltops/signbank/milestones/1","labels_url":"https://api.github.com/repos/Woseseltops/signbank/milestones/1/labels","id":915849,"number":1,"title":"First fully functional team version","description":"","creator":{"login":"ocrasborn","id":10242207,"avatar_url":"https://avatars.githubusercontent.com/u/10242207?v=3","gravatar_id":"","url":"https://api.github.com/users/ocrasborn","html_url":"https://github.com/ocrasborn","followers_url":"https://api.github.com/users/ocrasborn/followers","following_url":"https://api.github.com/users/ocrasborn/following{/other_user}","gists_url":"https://api.github.com/users/ocrasborn/gists{/gist_id}","starred_url":"https://api.github.com/users/ocrasborn/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ocrasborn/subscriptions","organizations_url":"https://api.github.com/users/ocrasborn/orgs","repos_url":"https://api.github.com/users/ocrasborn/repos","events_url":"https://api.github.com/users/ocrasborn/events{/privacy}","received_events_url":"https://api.github.com/users/ocrasborn/received_events","type":"User","site_admin":false},"open_issues":7,"closed_issues":0,"state":"open","created_at":"2014-12-27T22:00:19Z","updated_at":"2014-12-28T11:03:58Z","due_on":null,"closed_at":null},"comments":2,"created_at":"2014-12-19T10:44:41Z","updated_at":"2015-01-01T15:01:04Z","closed_at":null,"body":""},"comment":{"url":"https://api.github.com/repos/Woseseltops/signbank/issues/comments/68488512","html_url":"https://github.com/Woseseltops/signbank/issues/7#issuecomment-68488512","issue_url":"https://api.github.com/repos/Woseseltops/signbank/issues/7","id":68488512,"user":{"login":"Woseseltops","id":1909317,"avatar_url":"https://avatars.githubusercontent.com/u/1909317?v=3","gravatar_id":"","url":"https://api.github.com/users/Woseseltops","html_url":"https://github.com/Woseseltops","followers_url":"https://api.github.com/users/Woseseltops/followers","following_url":"https://api.github.com/users/Woseseltops/following{/other_user}","gists_url":"https://api.github.com/users/Woseseltops/gists{/gist_id}","starred_url":"https://api.github.com/users/Woseseltops/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Woseseltops/subscriptions","organizations_url":"https://api.github.com/users/Woseseltops/orgs","repos_url":"https://api.github.com/users/Woseseltops/repos","events_url":"https://api.github.com/users/Woseseltops/events{/privacy}","received_events_url":"https://api.github.com/users/Woseseltops/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:01:04Z","updated_at":"2015-01-01T15:01:04Z","body":"Related to https://github.com/Woseseltops/signbank/issues/8"}},"public":true,"created_at":"2015-01-01T15:01:04Z"}
,{"id":"2489651587","type":"PushEvent","actor":{"id":1793416,"login":"apascual89","gravatar_id":"","url":"https://api.github.com/users/apascual89","avatar_url":"https://avatars.githubusercontent.com/u/1793416?"},"repo":{"id":28508293,"name":"apascual89/packages_apps_Settings","url":"https://api.github.com/repos/apascual89/packages_apps_Settings"},"payload":{"push_id":536864226,"size":0,"distinct_size":0,"ref":"refs/heads/lp5.0","head":"8875e3b8a0ff16614016cbbc0a1be7c9ef0b0958","before":"181de1dca0ac326aae247e6454392f2ebd39cbb7","commits":[]},"public":true,"created_at":"2015-01-01T15:01:05Z"}
,{"id":"2489651591","type":"WatchEvent","actor":{"id":8643295,"login":"mhparker23","gravatar_id":"","url":"https://api.github.com/users/mhparker23","avatar_url":"https://avatars.githubusercontent.com/u/8643295?"},"repo":{"id":21289110,"name":"vinta/awesome-python","url":"https://api.github.com/repos/vinta/awesome-python"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:01:05Z"}
,{"id":"2489651592","type":"PushEvent","actor":{"id":45407,"login":"stig","gravatar_id":"","url":"https://api.github.com/users/stig","avatar_url":"https://avatars.githubusercontent.com/u/45407?"},"repo":{"id":21182391,"name":"stig/.emacs.d","url":"https://api.github.com/repos/stig/.emacs.d"},"payload":{"push_id":536864227,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"79b315b3daf1bbb4d1632ba7c745631d1a6ae108","before":"c3b4822b4b681dc1b36f026b528d610bfbfc24e2","commits":[{"sha":"79b315b3daf1bbb4d1632ba7c745631d1a6ae108","author":{"email":"33cc5b077fc72668cead4696906bc719c9a2b56d@net-a-porter.com","name":"Stig Brautaset"},"message":"Re-organise configuration into multiple files\n\nAlso add delete-current-buffer-file defun, and move package installs to\na common location.","distinct":true,"url":"https://api.github.com/repos/stig/.emacs.d/commits/79b315b3daf1bbb4d1632ba7c745631d1a6ae108"}]},"public":true,"created_at":"2015-01-01T15:01:05Z"}
,{"id":"2489651593","type":"PushEvent","actor":{"id":433583,"login":"shlomizadok","gravatar_id":"","url":"https://api.github.com/users/shlomizadok","avatar_url":"https://avatars.githubusercontent.com/u/433583?"},"repo":{"id":27426416,"name":"shlomizadok/foreman_openscap","url":"https://api.github.com/repos/shlomizadok/foreman_openscap"},"payload":{"push_id":536864228,"size":0,"distinct_size":0,"ref":"refs/heads/policy_ui","head":"db4f1d5c3f0dcc249e73e6ef82998c6cd3d18a2e","before":"b249c41355e147bc4b87aa7a5959215b48e161a5","commits":[]},"public":true,"created_at":"2015-01-01T15:01:05Z"}
,{"id":"2489651594","type":"PushEvent","actor":{"id":653941,"login":"cjolowicz","gravatar_id":"","url":"https://api.github.com/users/cjolowicz","avatar_url":"https://avatars.githubusercontent.com/u/653941?"},"repo":{"id":14541119,"name":"cjolowicz/scripts","url":"https://api.github.com/repos/cjolowicz/scripts"},"payload":{"push_id":536864229,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"f8db283a12541f4c61ade4809737f93f2d7a626d","before":"1a2ef42d8f6f794fd0917a1fd6e540a1325e2226","commits":[{"sha":"f8db283a12541f4c61ade4809737f93f2d7a626d","author":{"email":"82a36422d455213247e76b728a8ed41cf0074c73@dealloc.org","name":"Claudio Jolowicz"},"message":"[qreversetree] Add --help.","distinct":true,"url":"https://api.github.com/repos/cjolowicz/scripts/commits/f8db283a12541f4c61ade4809737f93f2d7a626d"}]},"public":true,"created_at":"2015-01-01T15:01:05Z"}
,{"id":"2489651596","type":"PushEvent","actor":{"id":4002921,"login":"LucasZheng","gravatar_id":"","url":"https://api.github.com/users/LucasZheng","avatar_url":"https://avatars.githubusercontent.com/u/4002921?"},"repo":{"id":28431894,"name":"LucasZheng/LucasZheng.github.io","url":"https://api.github.com/repos/LucasZheng/LucasZheng.github.io"},"payload":{"push_id":536864230,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"97575f293e28988c4e88906f9d1844f50f44ec2f","before":"5b17bdb8c8f48c33a27375993b76616446ba8258","commits":[{"sha":"97575f293e28988c4e88906f9d1844f50f44ec2f","author":{"email":"becca14b8729f2c8609f074c547c436bd940ceed@activenetwork.com","name":"LucasZheng"},"message":"Site updated: 2015-01-01 23:00:30","distinct":true,"url":"https://api.github.com/repos/LucasZheng/LucasZheng.github.io/commits/97575f293e28988c4e88906f9d1844f50f44ec2f"}]},"public":true,"created_at":"2015-01-01T15:01:06Z"}
,{"id":"2489651597","type":"PushEvent","actor":{"id":10341769,"login":"lyftclothing","gravatar_id":"","url":"https://api.github.com/users/lyftclothing","avatar_url":"https://avatars.githubusercontent.com/u/10341769?"},"repo":{"id":28600442,"name":"lyftclothing/lyftclothing.github.io","url":"https://api.github.com/repos/lyftclothing/lyftclothing.github.io"},"payload":{"push_id":536864231,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"59fdcb1091825ece541d97bf483e6cb23263b371","before":"3432a51a2df56fa087e1e64173a73c1e81b0d78e","commits":[{"sha":"59fdcb1091825ece541d97bf483e6cb23263b371","author":{"email":"aaf4c61ddcc5e8a2dabede0f3b482cd9aea9434d@lyftclothing.com","name":"Jacob Gibbs"},"message":"Site updated at 2015-01-01 15:00:56 UTC","distinct":true,"url":"https://api.github.com/repos/lyftclothing/lyftclothing.github.io/commits/59fdcb1091825ece541d97bf483e6cb23263b371"}]},"public":true,"created_at":"2015-01-01T15:01:06Z"}
,{"id":"2489651599","type":"PullRequestEvent","actor":{"id":10364471,"login":"Derathir","gravatar_id":"","url":"https://api.github.com/users/Derathir","avatar_url":"https://avatars.githubusercontent.com/u/10364471?"},"repo":{"id":28668553,"name":"Raulfin/PCaPP","url":"https://api.github.com/repos/Raulfin/PCaPP"},"payload":{"action":"opened","number":1,"pull_request":{"url":"https://api.github.com/repos/Raulfin/PCaPP/pulls/1","id":26743778,"html_url":"https://github.com/Raulfin/PCaPP/pull/1","diff_url":"https://github.com/Raulfin/PCaPP/pull/1.diff","patch_url":"https://github.com/Raulfin/PCaPP/pull/1.patch","issue_url":"https://api.github.com/repos/Raulfin/PCaPP/issues/1","number":1,"state":"open","locked":false,"title":"Armor.xml","user":{"login":"Derathir","id":10364471,"avatar_url":"https://avatars.githubusercontent.com/u/10364471?v=3","gravatar_id":"","url":"https://api.github.com/users/Derathir","html_url":"https://github.com/Derathir","followers_url":"https://api.github.com/users/Derathir/followers","following_url":"https://api.github.com/users/Derathir/following{/other_user}","gists_url":"https://api.github.com/users/Derathir/gists{/gist_id}","starred_url":"https://api.github.com/users/Derathir/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Derathir/subscriptions","organizations_url":"https://api.github.com/users/Derathir/orgs","repos_url":"https://api.github.com/users/Derathir/repos","events_url":"https://api.github.com/users/Derathir/events{/privacy}","received_events_url":"https://api.github.com/users/Derathir/received_events","type":"User","site_admin":false},"body":"I noticed that of the four Dragon Priest masks added by Dragonborn, only Miraak was covered by the XML. I added the missing three and reworked many of the others to 1) maintain balance between light and heavy armor types, 2) make sure the light/heavy status reflects the nature of the enchantment, 3) make dragon priest masks worth having compared to low- or mid-tier armor types, and 3) feature the maximum variety of material types, all while 4) ensuring the material type matches the mask's appearance (with the exception of Miraak, which I left unchanged). Here's the specifics:\r\n\r\nAdded the three other Dragon Priest Masks from Dragonborn:\r\nAhzidal - ScaledHeavy\r\nDukaan - HNordicHigh\r\nZahkriisos - EbonyLight\r\n\r\nChanged some of the materials on the existing Dragon Priest mask entries:\r\nOtar - GoldHeavy (from Glass) - better suited to heavy armor, and doesn't look like glass; glass is blue. The glass mask should probably be:\r\nMorokei - Glass (from Elven) - Krosis is already elven, so this prevents repeats (and it looks great with glass armor).\r\nVokun - LNordicHigh (from Steel Plate) - enchantment is better suited to light armor wearers.\r\nRahgot - OrkishLight (from Orkish) - enchantment is better suited to light armor wearers.\r\n\r\nKicked the stats for some of the other masks up to \"_High\" - nothing's more depressing than a crappy Dragon Priest mask. Specifically:\r\nKonahrik - DwarvenHigh (from Dwarven)\r\nHevnoraak - IronHigh (from Iron)\r\nVolsung - ScaledHigh (from Scaled) - it has a crappy enchantment, so it needs the armor rating boost.\r\nKrosis - ElvenHigh (from Elven)\r\n\r\nThis leaves us with 7 heavy and 6 light masks - Seems balanced.\r\n\r\nTL;DR I expanded and reworked Dragon Priest masks.","created_at":"2015-01-01T15:01:06Z","updated_at":"2015-01-01T15:01:06Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/Raulfin/PCaPP/pulls/1/commits","review_comments_url":"https://api.github.com/repos/Raulfin/PCaPP/pulls/1/comments","review_comment_url":"https://api.github.com/repos/Raulfin/PCaPP/pulls/comments/{number}","comments_url":"https://api.github.com/repos/Raulfin/PCaPP/issues/1/comments","statuses_url":"https://api.github.com/repos/Raulfin/PCaPP/statuses/d2e68f31d0a91884c65ec454d5e7c56e1c66c3b3","head":{"label":"Derathir:patch-1","ref":"patch-1","sha":"d2e68f31d0a91884c65ec454d5e7c56e1c66c3b3","user":{"login":"Derathir","id":10364471,"avatar_url":"https://avatars.githubusercontent.com/u/10364471?v=3","gravatar_id":"","url":"https://api.github.com/users/Derathir","html_url":"https://github.com/Derathir","followers_url":"https://api.github.com/users/Derathir/followers","following_url":"https://api.github.com/users/Derathir/following{/other_user}","gists_url":"https://api.github.com/users/Derathir/gists{/gist_id}","starred_url":"https://api.github.com/users/Derathir/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Derathir/subscriptions","organizations_url":"https://api.github.com/users/Derathir/orgs","repos_url":"https://api.github.com/users/Derathir/repos","events_url":"https://api.github.com/users/Derathir/events{/privacy}","received_events_url":"https://api.github.com/users/Derathir/received_events","type":"User","site_admin":false},"repo":{"id":28687886,"name":"PCaPP","full_name":"Derathir/PCaPP","owner":{"login":"Derathir","id":10364471,"avatar_url":"https://avatars.githubusercontent.com/u/10364471?v=3","gravatar_id":"","url":"https://api.github.com/users/Derathir","html_url":"https://github.com/Derathir","followers_url":"https://api.github.com/users/Derathir/followers","following_url":"https://api.github.com/users/Derathir/following{/other_user}","gists_url":"https://api.github.com/users/Derathir/gists{/gist_id}","starred_url":"https://api.github.com/users/Derathir/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Derathir/subscriptions","organizations_url":"https://api.github.com/users/Derathir/orgs","repos_url":"https://api.github.com/users/Derathir/repos","events_url":"https://api.github.com/users/Derathir/events{/privacy}","received_events_url":"https://api.github.com/users/Derathir/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/Derathir/PCaPP","description":"Repository for XMLs for Perkus Maxamus","fork":true,"url":"https://api.github.com/repos/Derathir/PCaPP","forks_url":"https://api.github.com/repos/Derathir/PCaPP/forks","keys_url":"https://api.github.com/repos/Derathir/PCaPP/keys{/key_id}","collaborators_url":"https://api.github.com/repos/Derathir/PCaPP/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/Derathir/PCaPP/teams","hooks_url":"https://api.github.com/repos/Derathir/PCaPP/hooks","issue_events_url":"https://api.github.com/repos/Derathir/PCaPP/issues/events{/number}","events_url":"https://api.github.com/repos/Derathir/PCaPP/events","assignees_url":"https://api.github.com/repos/Derathir/PCaPP/assignees{/user}","branches_url":"https://api.github.com/repos/Derathir/PCaPP/branches{/branch}","tags_url":"https://api.github.com/repos/Derathir/PCaPP/tags","blobs_url":"https://api.github.com/repos/Derathir/PCaPP/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/Derathir/PCaPP/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/Derathir/PCaPP/git/refs{/sha}","trees_url":"https://api.github.com/repos/Derathir/PCaPP/git/trees{/sha}","statuses_url":"https://api.github.com/repos/Derathir/PCaPP/statuses/{sha}","languages_url":"https://api.github.com/repos/Derathir/PCaPP/languages","stargazers_url":"https://api.github.com/repos/Derathir/PCaPP/stargazers","contributors_url":"https://api.github.com/repos/Derathir/PCaPP/contributors","subscribers_url":"https://api.github.com/repos/Derathir/PCaPP/subscribers","subscription_url":"https://api.github.com/repos/Derathir/PCaPP/subscription","commits_url":"https://api.github.com/repos/Derathir/PCaPP/commits{/sha}","git_commits_url":"https://api.github.com/repos/Derathir/PCaPP/git/commits{/sha}","comments_url":"https://api.github.com/repos/Derathir/PCaPP/comments{/number}","issue_comment_url":"https://api.github.com/repos/Derathir/PCaPP/issues/comments/{number}","contents_url":"https://api.github.com/repos/Derathir/PCaPP/contents/{+path}","compare_url":"https://api.github.com/repos/Derathir/PCaPP/compare/{base}...{head}","merges_url":"https://api.github.com/repos/Derathir/PCaPP/merges","archive_url":"https://api.github.com/repos/Derathir/PCaPP/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/Derathir/PCaPP/downloads","issues_url":"https://api.github.com/repos/Derathir/PCaPP/issues{/number}","pulls_url":"https://api.github.com/repos/Derathir/PCaPP/pulls{/number}","milestones_url":"https://api.github.com/repos/Derathir/PCaPP/milestones{/number}","notifications_url":"https://api.github.com/repos/Derathir/PCaPP/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/Derathir/PCaPP/labels{/name}","releases_url":"https://api.github.com/repos/Derathir/PCaPP/releases{/id}","created_at":"2015-01-01T14:16:43Z","updated_at":"2014-12-31T20:24:08Z","pushed_at":"2015-01-01T15:00:39Z","git_url":"git://github.com/Derathir/PCaPP.git","ssh_url":"git@github.com:Derathir/PCaPP.git","clone_url":"https://github.com/Derathir/PCaPP.git","svn_url":"https://github.com/Derathir/PCaPP","homepage":null,"size":0,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":false,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master"}},"base":{"label":"Raulfin:master","ref":"master","sha":"d8832d838ed16e3e068fba91c423c3c424ca335b","user":{"login":"Raulfin","id":7994405,"avatar_url":"https://avatars.githubusercontent.com/u/7994405?v=3","gravatar_id":"","url":"https://api.github.com/users/Raulfin","html_url":"https://github.com/Raulfin","followers_url":"https://api.github.com/users/Raulfin/followers","following_url":"https://api.github.com/users/Raulfin/following{/other_user}","gists_url":"https://api.github.com/users/Raulfin/gists{/gist_id}","starred_url":"https://api.github.com/users/Raulfin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Raulfin/subscriptions","organizations_url":"https://api.github.com/users/Raulfin/orgs","repos_url":"https://api.github.com/users/Raulfin/repos","events_url":"https://api.github.com/users/Raulfin/events{/privacy}","received_events_url":"https://api.github.com/users/Raulfin/received_events","type":"User","site_admin":false},"repo":{"id":28668553,"name":"PCaPP","full_name":"Raulfin/PCaPP","owner":{"login":"Raulfin","id":7994405,"avatar_url":"https://avatars.githubusercontent.com/u/7994405?v=3","gravatar_id":"","url":"https://api.github.com/users/Raulfin","html_url":"https://github.com/Raulfin","followers_url":"https://api.github.com/users/Raulfin/followers","following_url":"https://api.github.com/users/Raulfin/following{/other_user}","gists_url":"https://api.github.com/users/Raulfin/gists{/gist_id}","starred_url":"https://api.github.com/users/Raulfin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Raulfin/subscriptions","organizations_url":"https://api.github.com/users/Raulfin/orgs","repos_url":"https://api.github.com/users/Raulfin/repos","events_url":"https://api.github.com/users/Raulfin/events{/privacy}","received_events_url":"https://api.github.com/users/Raulfin/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/Raulfin/PCaPP","description":"Repository for XMLs for Perkus Maxamus","fork":false,"url":"https://api.github.com/repos/Raulfin/PCaPP","forks_url":"https://api.github.com/repos/Raulfin/PCaPP/forks","keys_url":"https://api.github.com/repos/Raulfin/PCaPP/keys{/key_id}","collaborators_url":"https://api.github.com/repos/Raulfin/PCaPP/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/Raulfin/PCaPP/teams","hooks_url":"https://api.github.com/repos/Raulfin/PCaPP/hooks","issue_events_url":"https://api.github.com/repos/Raulfin/PCaPP/issues/events{/number}","events_url":"https://api.github.com/repos/Raulfin/PCaPP/events","assignees_url":"https://api.github.com/repos/Raulfin/PCaPP/assignees{/user}","branches_url":"https://api.github.com/repos/Raulfin/PCaPP/branches{/branch}","tags_url":"https://api.github.com/repos/Raulfin/PCaPP/tags","blobs_url":"https://api.github.com/repos/Raulfin/PCaPP/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/Raulfin/PCaPP/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/Raulfin/PCaPP/git/refs{/sha}","trees_url":"https://api.github.com/repos/Raulfin/PCaPP/git/trees{/sha}","statuses_url":"https://api.github.com/repos/Raulfin/PCaPP/statuses/{sha}","languages_url":"https://api.github.com/repos/Raulfin/PCaPP/languages","stargazers_url":"https://api.github.com/repos/Raulfin/PCaPP/stargazers","contributors_url":"https://api.github.com/repos/Raulfin/PCaPP/contributors","subscribers_url":"https://api.github.com/repos/Raulfin/PCaPP/subscribers","subscription_url":"https://api.github.com/repos/Raulfin/PCaPP/subscription","commits_url":"https://api.github.com/repos/Raulfin/PCaPP/commits{/sha}","git_commits_url":"https://api.github.com/repos/Raulfin/PCaPP/git/commits{/sha}","comments_url":"https://api.github.com/repos/Raulfin/PCaPP/comments{/number}","issue_comment_url":"https://api.github.com/repos/Raulfin/PCaPP/issues/comments/{number}","contents_url":"https://api.github.com/repos/Raulfin/PCaPP/contents/{+path}","compare_url":"https://api.github.com/repos/Raulfin/PCaPP/compare/{base}...{head}","merges_url":"https://api.github.com/repos/Raulfin/PCaPP/merges","archive_url":"https://api.github.com/repos/Raulfin/PCaPP/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/Raulfin/PCaPP/downloads","issues_url":"https://api.github.com/repos/Raulfin/PCaPP/issues{/number}","pulls_url":"https://api.github.com/repos/Raulfin/PCaPP/pulls{/number}","milestones_url":"https://api.github.com/repos/Raulfin/PCaPP/milestones{/number}","notifications_url":"https://api.github.com/repos/Raulfin/PCaPP/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/Raulfin/PCaPP/labels{/name}","releases_url":"https://api.github.com/repos/Raulfin/PCaPP/releases{/id}","created_at":"2014-12-31T15:11:20Z","updated_at":"2014-12-31T20:24:08Z","pushed_at":"2015-01-01T07:47:04Z","git_url":"git://github.com/Raulfin/PCaPP.git","ssh_url":"git@github.com:Raulfin/PCaPP.git","clone_url":"https://github.com/Raulfin/PCaPP.git","svn_url":"https://github.com/Raulfin/PCaPP","homepage":null,"size":0,"stargazers_count":1,"watchers_count":1,"language":null,"has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":2,"mirror_url":null,"open_issues_count":1,"forks":2,"open_issues":1,"watchers":1,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/Raulfin/PCaPP/pulls/1"},"html":{"href":"https://github.com/Raulfin/PCaPP/pull/1"},"issue":{"href":"https://api.github.com/repos/Raulfin/PCaPP/issues/1"},"comments":{"href":"https://api.github.com/repos/Raulfin/PCaPP/issues/1/comments"},"review_comments":{"href":"https://api.github.com/repos/Raulfin/PCaPP/pulls/1/comments"},"review_comment":{"href":"https://api.github.com/repos/Raulfin/PCaPP/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/Raulfin/PCaPP/pulls/1/commits"},"statuses":{"href":"https://api.github.com/repos/Raulfin/PCaPP/statuses/d2e68f31d0a91884c65ec454d5e7c56e1c66c3b3"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":1,"additions":28,"deletions":16,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:01:06Z"}
,{"id":"2489651605","type":"IssueCommentEvent","actor":{"id":3419281,"login":"Xexanos","gravatar_id":"","url":"https://api.github.com/users/Xexanos","avatar_url":"https://avatars.githubusercontent.com/u/3419281?"},"repo":{"id":23991305,"name":"Xexanos/PoorOres","url":"https://api.github.com/repos/Xexanos/PoorOres"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/Xexanos/PoorOres/issues/5","labels_url":"https://api.github.com/repos/Xexanos/PoorOres/issues/5/labels{/name}","comments_url":"https://api.github.com/repos/Xexanos/PoorOres/issues/5/comments","events_url":"https://api.github.com/repos/Xexanos/PoorOres/issues/5/events","html_url":"https://github.com/Xexanos/PoorOres/issues/5","id":53209922,"number":5,"title":"Breaking some ores should drop nuggets not ores.","user":{"login":"Claycorp","id":3961359,"avatar_url":"https://avatars.githubusercontent.com/u/3961359?v=3","gravatar_id":"","url":"https://api.github.com/users/Claycorp","html_url":"https://github.com/Claycorp","followers_url":"https://api.github.com/users/Claycorp/followers","following_url":"https://api.github.com/users/Claycorp/following{/other_user}","gists_url":"https://api.github.com/users/Claycorp/gists{/gist_id}","starred_url":"https://api.github.com/users/Claycorp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Claycorp/subscriptions","organizations_url":"https://api.github.com/users/Claycorp/orgs","repos_url":"https://api.github.com/users/Claycorp/repos","events_url":"https://api.github.com/users/Claycorp/events{/privacy}","received_events_url":"https://api.github.com/users/Claycorp/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2015-01-01T00:45:42Z","updated_at":"2015-01-01T15:01:08Z","closed_at":"2015-01-01T15:01:08Z","body":"Diamond, Emerald, Coal... Any other gem or ores that drop items.\r\n\r\nThis is especially the case with coal as getting the coal out of the ore is less efficient than making charcoal or using planks thus making the ores completely pointless unless you need the coal for a crafting recipe.\r\n\r\nAdding in a new line to the config for this option would be optimal.\r\nI:blockDropsNuggets=0/1 or S:blockDropsNuggets:true/false "},"comment":{"url":"https://api.github.com/repos/Xexanos/PoorOres/issues/comments/68488514","html_url":"https://github.com/Xexanos/PoorOres/issues/5#issuecomment-68488514","issue_url":"https://api.github.com/repos/Xexanos/PoorOres/issues/5","id":68488514,"user":{"login":"Xexanos","id":3419281,"avatar_url":"https://avatars.githubusercontent.com/u/3419281?v=3","gravatar_id":"","url":"https://api.github.com/users/Xexanos","html_url":"https://github.com/Xexanos","followers_url":"https://api.github.com/users/Xexanos/followers","following_url":"https://api.github.com/users/Xexanos/following{/other_user}","gists_url":"https://api.github.com/users/Xexanos/gists{/gist_id}","starred_url":"https://api.github.com/users/Xexanos/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Xexanos/subscriptions","organizations_url":"https://api.github.com/users/Xexanos/orgs","repos_url":"https://api.github.com/users/Xexanos/repos","events_url":"https://api.github.com/users/Xexanos/events{/privacy}","received_events_url":"https://api.github.com/users/Xexanos/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:01:08Z","updated_at":"2015-01-01T15:01:08Z","body":"I did it a little different and just take a look at the original ore. If that drops an item I also drop an item... and I adjusted the amount dropped, to accommodate, that for example lapis does not only drop one but multiple items at a time."}},"public":true,"created_at":"2015-01-01T15:01:08Z"}
,{"id":"2489651606","type":"IssuesEvent","actor":{"id":3419281,"login":"Xexanos","gravatar_id":"","url":"https://api.github.com/users/Xexanos","avatar_url":"https://avatars.githubusercontent.com/u/3419281?"},"repo":{"id":23991305,"name":"Xexanos/PoorOres","url":"https://api.github.com/repos/Xexanos/PoorOres"},"payload":{"action":"closed","issue":{"url":"https://api.github.com/repos/Xexanos/PoorOres/issues/5","labels_url":"https://api.github.com/repos/Xexanos/PoorOres/issues/5/labels{/name}","comments_url":"https://api.github.com/repos/Xexanos/PoorOres/issues/5/comments","events_url":"https://api.github.com/repos/Xexanos/PoorOres/issues/5/events","html_url":"https://github.com/Xexanos/PoorOres/issues/5","id":53209922,"number":5,"title":"Breaking some ores should drop nuggets not ores.","user":{"login":"Claycorp","id":3961359,"avatar_url":"https://avatars.githubusercontent.com/u/3961359?v=3","gravatar_id":"","url":"https://api.github.com/users/Claycorp","html_url":"https://github.com/Claycorp","followers_url":"https://api.github.com/users/Claycorp/followers","following_url":"https://api.github.com/users/Claycorp/following{/other_user}","gists_url":"https://api.github.com/users/Claycorp/gists{/gist_id}","starred_url":"https://api.github.com/users/Claycorp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Claycorp/subscriptions","organizations_url":"https://api.github.com/users/Claycorp/orgs","repos_url":"https://api.github.com/users/Claycorp/repos","events_url":"https://api.github.com/users/Claycorp/events{/privacy}","received_events_url":"https://api.github.com/users/Claycorp/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2015-01-01T00:45:42Z","updated_at":"2015-01-01T15:01:08Z","closed_at":"2015-01-01T15:01:08Z","body":"Diamond, Emerald, Coal... Any other gem or ores that drop items.\r\n\r\nThis is especially the case with coal as getting the coal out of the ore is less efficient than making charcoal or using planks thus making the ores completely pointless unless you need the coal for a crafting recipe.\r\n\r\nAdding in a new line to the config for this option would be optimal.\r\nI:blockDropsNuggets=0/1 or S:blockDropsNuggets:true/false "}},"public":true,"created_at":"2015-01-01T15:01:08Z"}
,{"id":"2489651607","type":"PushEvent","actor":{"id":280212,"login":"KenanSulayman","gravatar_id":"","url":"https://api.github.com/users/KenanSulayman","avatar_url":"https://avatars.githubusercontent.com/u/280212?"},"repo":{"id":21481110,"name":"KenanSulayman/heartbeat","url":"https://api.github.com/repos/KenanSulayman/heartbeat"},"payload":{"push_id":536864237,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"3fa6cbbeb2a4b8eb06b322a9a420b07bd36dcb57","before":"44d16923964b1c1a669d2ff05abb55fb4db27040","commits":[{"sha":"3fa6cbbeb2a4b8eb06b322a9a420b07bd36dcb57","author":{"email":"9176253dfc0bc82671a5e984646605f93319147a@sly.mn","name":"Kenan Sulayman"},"message":"1420124466695\n\nvAR42JZyUqS3uPWynugOOjGwp9GrUB+GBaQon33nZd4=","distinct":true,"url":"https://api.github.com/repos/KenanSulayman/heartbeat/commits/3fa6cbbeb2a4b8eb06b322a9a420b07bd36dcb57"}]},"public":true,"created_at":"2015-01-01T15:01:08Z"}
,{"id":"2489651609","type":"PushEvent","actor":{"id":3890972,"login":"timmmmyboy","gravatar_id":"","url":"https://api.github.com/users/timmmmyboy","avatar_url":"https://avatars.githubusercontent.com/u/3890972?"},"repo":{"id":26382386,"name":"reclaimhosting/federated-wiki","url":"https://api.github.com/repos/reclaimhosting/federated-wiki"},"payload":{"push_id":536864239,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"19bc34d6abecb35447a9c4ac8e2a73dbeb57d6ec","before":"37c55a8f8723e588a277c4ac8c68435cfe05a991","commits":[{"sha":"19bc34d6abecb35447a9c4ac8e2a73dbeb57d6ec","author":{"email":"59bd0a3ff43b32849b319e645d4798d8a5d1e889@reclaimhosting.com","name":"Reclaim Hosting"},"message":"Recent Changes","distinct":true,"url":"https://api.github.com/repos/reclaimhosting/federated-wiki/commits/19bc34d6abecb35447a9c4ac8e2a73dbeb57d6ec"}]},"public":true,"created_at":"2015-01-01T15:01:08Z","org":{"id":6590468,"login":"reclaimhosting","gravatar_id":"","url":"https://api.github.com/orgs/reclaimhosting","avatar_url":"https://avatars.githubusercontent.com/u/6590468?"}}
,{"id":"2489651610","type":"PushEvent","actor":{"id":6895040,"login":"codertradergambler","gravatar_id":"","url":"https://api.github.com/users/codertradergambler","avatar_url":"https://avatars.githubusercontent.com/u/6895040?"},"repo":{"id":18620619,"name":"chancecoin/chancecoinj","url":"https://api.github.com/repos/chancecoin/chancecoinj"},"payload":{"push_id":536864240,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"cfc67a964475a358a16e7c50dd44c0586043c74e","before":"578dc4282cde1533fc8a261ef53c02bca596eaba","commits":[{"sha":"cfc67a964475a358a16e7c50dd44c0586043c74e","author":{"email":"0ccf54d51d1a5240ad356feb30dfa4d1749f8844@gmail.com","name":"TraderCoderGambler"},"message":"auto-update balances","distinct":true,"url":"https://api.github.com/repos/chancecoin/chancecoinj/commits/cfc67a964475a358a16e7c50dd44c0586043c74e"}]},"public":true,"created_at":"2015-01-01T15:01:08Z"}
,{"id":"2489651611","type":"PushEvent","actor":{"id":9315869,"login":"epambench","gravatar_id":"","url":"https://api.github.com/users/epambench","avatar_url":"https://avatars.githubusercontent.com/u/9315869?"},"repo":{"id":28230784,"name":"epambench/tdd","url":"https://api.github.com/repos/epambench/tdd"},"payload":{"push_id":536864241,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"af9da4bcf102c61914552eb110a7a4bdfd98b42a","before":"408f7b452cc2fa1fd4df4e711aa0811ff2612c6f","commits":[{"sha":"af9da4bcf102c61914552eb110a7a4bdfd98b42a","author":{"email":"4b9765d0390350d227c73d25f0f650bb1a53e880@gmail.com","name":"vladimir"},"message":"Added mockito and javadocs","distinct":true,"url":"https://api.github.com/repos/epambench/tdd/commits/af9da4bcf102c61914552eb110a7a4bdfd98b42a"}]},"public":true,"created_at":"2015-01-01T15:01:09Z"}
,{"id":"2489651613","type":"PushEvent","actor":{"id":9497205,"login":"magicwheel","gravatar_id":"","url":"https://api.github.com/users/magicwheel","avatar_url":"https://avatars.githubusercontent.com/u/9497205?"},"repo":{"id":26048351,"name":"magicwheel/agent-core-and-example","url":"https://api.github.com/repos/magicwheel/agent-core-and-example"},"payload":{"push_id":536864242,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"a25f67dc411a7ed081da9fc8119c110f66060fef","before":"6b6288cc5c599c4413529e7d8ff1620414c6f219","commits":[{"sha":"a25f67dc411a7ed081da9fc8119c110f66060fef","author":{"email":"59bd0a3ff43b32849b319e645d4798d8a5d1e889@magicwheel.info","name":"magicwheel"},"message":"initdb, destroy old pear","distinct":true,"url":"https://api.github.com/repos/magicwheel/agent-core-and-example/commits/a25f67dc411a7ed081da9fc8119c110f66060fef"}]},"public":true,"created_at":"2015-01-01T15:01:09Z"}
,{"id":"2489651616","type":"PullRequestEvent","actor":{"id":2884455,"login":"chrisduan","gravatar_id":"","url":"https://api.github.com/users/chrisduan","avatar_url":"https://avatars.githubusercontent.com/u/2884455?"},"repo":{"id":28683221,"name":"chrisduan/mychat","url":"https://api.github.com/repos/chrisduan/mychat"},"payload":{"action":"opened","number":3,"pull_request":{"url":"https://api.github.com/repos/chrisduan/mychat/pulls/3","id":26743779,"html_url":"https://github.com/chrisduan/mychat/pull/3","diff_url":"https://github.com/chrisduan/mychat/pull/3.diff","patch_url":"https://github.com/chrisduan/mychat/pull/3.patch","issue_url":"https://api.github.com/repos/chrisduan/mychat/issues/3","number":3,"state":"open","locked":false,"title":"modify README.md,log develop plan","user":{"login":"chrisduan","id":2884455,"avatar_url":"https://avatars.githubusercontent.com/u/2884455?v=3","gravatar_id":"","url":"https://api.github.com/users/chrisduan","html_url":"https://github.com/chrisduan","followers_url":"https://api.github.com/users/chrisduan/followers","following_url":"https://api.github.com/users/chrisduan/following{/other_user}","gists_url":"https://api.github.com/users/chrisduan/gists{/gist_id}","starred_url":"https://api.github.com/users/chrisduan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/chrisduan/subscriptions","organizations_url":"https://api.github.com/users/chrisduan/orgs","repos_url":"https://api.github.com/users/chrisduan/repos","events_url":"https://api.github.com/users/chrisduan/events{/privacy}","received_events_url":"https://api.github.com/users/chrisduan/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:01:09Z","updated_at":"2015-01-01T15:01:09Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/chrisduan/mychat/pulls/3/commits","review_comments_url":"https://api.github.com/repos/chrisduan/mychat/pulls/3/comments","review_comment_url":"https://api.github.com/repos/chrisduan/mychat/pulls/comments/{number}","comments_url":"https://api.github.com/repos/chrisduan/mychat/issues/3/comments","statuses_url":"https://api.github.com/repos/chrisduan/mychat/statuses/016f0ee4b973069e79ef87e2248d8df2c7cc8cd8","head":{"label":"chrisduan:task","ref":"task","sha":"016f0ee4b973069e79ef87e2248d8df2c7cc8cd8","user":{"login":"chrisduan","id":2884455,"avatar_url":"https://avatars.githubusercontent.com/u/2884455?v=3","gravatar_id":"","url":"https://api.github.com/users/chrisduan","html_url":"https://github.com/chrisduan","followers_url":"https://api.github.com/users/chrisduan/followers","following_url":"https://api.github.com/users/chrisduan/following{/other_user}","gists_url":"https://api.github.com/users/chrisduan/gists{/gist_id}","starred_url":"https://api.github.com/users/chrisduan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/chrisduan/subscriptions","organizations_url":"https://api.github.com/users/chrisduan/orgs","repos_url":"https://api.github.com/users/chrisduan/repos","events_url":"https://api.github.com/users/chrisduan/events{/privacy}","received_events_url":"https://api.github.com/users/chrisduan/received_events","type":"User","site_admin":false},"repo":{"id":28683221,"name":"mychat","full_name":"chrisduan/mychat","owner":{"login":"chrisduan","id":2884455,"avatar_url":"https://avatars.githubusercontent.com/u/2884455?v=3","gravatar_id":"","url":"https://api.github.com/users/chrisduan","html_url":"https://github.com/chrisduan","followers_url":"https://api.github.com/users/chrisduan/followers","following_url":"https://api.github.com/users/chrisduan/following{/other_user}","gists_url":"https://api.github.com/users/chrisduan/gists{/gist_id}","starred_url":"https://api.github.com/users/chrisduan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/chrisduan/subscriptions","organizations_url":"https://api.github.com/users/chrisduan/orgs","repos_url":"https://api.github.com/users/chrisduan/repos","events_url":"https://api.github.com/users/chrisduan/events{/privacy}","received_events_url":"https://api.github.com/users/chrisduan/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/chrisduan/mychat","description":"","fork":false,"url":"https://api.github.com/repos/chrisduan/mychat","forks_url":"https://api.github.com/repos/chrisduan/mychat/forks","keys_url":"https://api.github.com/repos/chrisduan/mychat/keys{/key_id}","collaborators_url":"https://api.github.com/repos/chrisduan/mychat/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/chrisduan/mychat/teams","hooks_url":"https://api.github.com/repos/chrisduan/mychat/hooks","issue_events_url":"https://api.github.com/repos/chrisduan/mychat/issues/events{/number}","events_url":"https://api.github.com/repos/chrisduan/mychat/events","assignees_url":"https://api.github.com/repos/chrisduan/mychat/assignees{/user}","branches_url":"https://api.github.com/repos/chrisduan/mychat/branches{/branch}","tags_url":"https://api.github.com/repos/chrisduan/mychat/tags","blobs_url":"https://api.github.com/repos/chrisduan/mychat/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/chrisduan/mychat/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/chrisduan/mychat/git/refs{/sha}","trees_url":"https://api.github.com/repos/chrisduan/mychat/git/trees{/sha}","statuses_url":"https://api.github.com/repos/chrisduan/mychat/statuses/{sha}","languages_url":"https://api.github.com/repos/chrisduan/mychat/languages","stargazers_url":"https://api.github.com/repos/chrisduan/mychat/stargazers","contributors_url":"https://api.github.com/repos/chrisduan/mychat/contributors","subscribers_url":"https://api.github.com/repos/chrisduan/mychat/subscribers","subscription_url":"https://api.github.com/repos/chrisduan/mychat/subscription","commits_url":"https://api.github.com/repos/chrisduan/mychat/commits{/sha}","git_commits_url":"https://api.github.com/repos/chrisduan/mychat/git/commits{/sha}","comments_url":"https://api.github.com/repos/chrisduan/mychat/comments{/number}","issue_comment_url":"https://api.github.com/repos/chrisduan/mychat/issues/comments/{number}","contents_url":"https://api.github.com/repos/chrisduan/mychat/contents/{+path}","compare_url":"https://api.github.com/repos/chrisduan/mychat/compare/{base}...{head}","merges_url":"https://api.github.com/repos/chrisduan/mychat/merges","archive_url":"https://api.github.com/repos/chrisduan/mychat/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/chrisduan/mychat/downloads","issues_url":"https://api.github.com/repos/chrisduan/mychat/issues{/number}","pulls_url":"https://api.github.com/repos/chrisduan/mychat/pulls{/number}","milestones_url":"https://api.github.com/repos/chrisduan/mychat/milestones{/number}","notifications_url":"https://api.github.com/repos/chrisduan/mychat/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/chrisduan/mychat/labels{/name}","releases_url":"https://api.github.com/repos/chrisduan/mychat/releases{/id}","created_at":"2015-01-01T08:30:39Z","updated_at":"2015-01-01T12:57:51Z","pushed_at":"2015-01-01T15:00:12Z","git_url":"git://github.com/chrisduan/mychat.git","ssh_url":"git@github.com:chrisduan/mychat.git","clone_url":"https://github.com/chrisduan/mychat.git","svn_url":"https://github.com/chrisduan/mychat","homepage":null,"size":0,"stargazers_count":0,"watchers_count":0,"language":"Java","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":1,"forks":0,"open_issues":1,"watchers":0,"default_branch":"master"}},"base":{"label":"chrisduan:master","ref":"master","sha":"06d276764e280d653c89ac60cc5378615559aef8","user":{"login":"chrisduan","id":2884455,"avatar_url":"https://avatars.githubusercontent.com/u/2884455?v=3","gravatar_id":"","url":"https://api.github.com/users/chrisduan","html_url":"https://github.com/chrisduan","followers_url":"https://api.github.com/users/chrisduan/followers","following_url":"https://api.github.com/users/chrisduan/following{/other_user}","gists_url":"https://api.github.com/users/chrisduan/gists{/gist_id}","starred_url":"https://api.github.com/users/chrisduan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/chrisduan/subscriptions","organizations_url":"https://api.github.com/users/chrisduan/orgs","repos_url":"https://api.github.com/users/chrisduan/repos","events_url":"https://api.github.com/users/chrisduan/events{/privacy}","received_events_url":"https://api.github.com/users/chrisduan/received_events","type":"User","site_admin":false},"repo":{"id":28683221,"name":"mychat","full_name":"chrisduan/mychat","owner":{"login":"chrisduan","id":2884455,"avatar_url":"https://avatars.githubusercontent.com/u/2884455?v=3","gravatar_id":"","url":"https://api.github.com/users/chrisduan","html_url":"https://github.com/chrisduan","followers_url":"https://api.github.com/users/chrisduan/followers","following_url":"https://api.github.com/users/chrisduan/following{/other_user}","gists_url":"https://api.github.com/users/chrisduan/gists{/gist_id}","starred_url":"https://api.github.com/users/chrisduan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/chrisduan/subscriptions","organizations_url":"https://api.github.com/users/chrisduan/orgs","repos_url":"https://api.github.com/users/chrisduan/repos","events_url":"https://api.github.com/users/chrisduan/events{/privacy}","received_events_url":"https://api.github.com/users/chrisduan/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/chrisduan/mychat","description":"","fork":false,"url":"https://api.github.com/repos/chrisduan/mychat","forks_url":"https://api.github.com/repos/chrisduan/mychat/forks","keys_url":"https://api.github.com/repos/chrisduan/mychat/keys{/key_id}","collaborators_url":"https://api.github.com/repos/chrisduan/mychat/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/chrisduan/mychat/teams","hooks_url":"https://api.github.com/repos/chrisduan/mychat/hooks","issue_events_url":"https://api.github.com/repos/chrisduan/mychat/issues/events{/number}","events_url":"https://api.github.com/repos/chrisduan/mychat/events","assignees_url":"https://api.github.com/repos/chrisduan/mychat/assignees{/user}","branches_url":"https://api.github.com/repos/chrisduan/mychat/branches{/branch}","tags_url":"https://api.github.com/repos/chrisduan/mychat/tags","blobs_url":"https://api.github.com/repos/chrisduan/mychat/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/chrisduan/mychat/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/chrisduan/mychat/git/refs{/sha}","trees_url":"https://api.github.com/repos/chrisduan/mychat/git/trees{/sha}","statuses_url":"https://api.github.com/repos/chrisduan/mychat/statuses/{sha}","languages_url":"https://api.github.com/repos/chrisduan/mychat/languages","stargazers_url":"https://api.github.com/repos/chrisduan/mychat/stargazers","contributors_url":"https://api.github.com/repos/chrisduan/mychat/contributors","subscribers_url":"https://api.github.com/repos/chrisduan/mychat/subscribers","subscription_url":"https://api.github.com/repos/chrisduan/mychat/subscription","commits_url":"https://api.github.com/repos/chrisduan/mychat/commits{/sha}","git_commits_url":"https://api.github.com/repos/chrisduan/mychat/git/commits{/sha}","comments_url":"https://api.github.com/repos/chrisduan/mychat/comments{/number}","issue_comment_url":"https://api.github.com/repos/chrisduan/mychat/issues/comments/{number}","contents_url":"https://api.github.com/repos/chrisduan/mychat/contents/{+path}","compare_url":"https://api.github.com/repos/chrisduan/mychat/compare/{base}...{head}","merges_url":"https://api.github.com/repos/chrisduan/mychat/merges","archive_url":"https://api.github.com/repos/chrisduan/mychat/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/chrisduan/mychat/downloads","issues_url":"https://api.github.com/repos/chrisduan/mychat/issues{/number}","pulls_url":"https://api.github.com/repos/chrisduan/mychat/pulls{/number}","milestones_url":"https://api.github.com/repos/chrisduan/mychat/milestones{/number}","notifications_url":"https://api.github.com/repos/chrisduan/mychat/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/chrisduan/mychat/labels{/name}","releases_url":"https://api.github.com/repos/chrisduan/mychat/releases{/id}","created_at":"2015-01-01T08:30:39Z","updated_at":"2015-01-01T12:57:51Z","pushed_at":"2015-01-01T15:00:12Z","git_url":"git://github.com/chrisduan/mychat.git","ssh_url":"git@github.com:chrisduan/mychat.git","clone_url":"https://github.com/chrisduan/mychat.git","svn_url":"https://github.com/chrisduan/mychat","homepage":null,"size":0,"stargazers_count":0,"watchers_count":0,"language":"Java","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":1,"forks":0,"open_issues":1,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/chrisduan/mychat/pulls/3"},"html":{"href":"https://github.com/chrisduan/mychat/pull/3"},"issue":{"href":"https://api.github.com/repos/chrisduan/mychat/issues/3"},"comments":{"href":"https://api.github.com/repos/chrisduan/mychat/issues/3/comments"},"review_comments":{"href":"https://api.github.com/repos/chrisduan/mychat/pulls/3/comments"},"review_comment":{"href":"https://api.github.com/repos/chrisduan/mychat/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/chrisduan/mychat/pulls/3/commits"},"statuses":{"href":"https://api.github.com/repos/chrisduan/mychat/statuses/016f0ee4b973069e79ef87e2248d8df2c7cc8cd8"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":1,"additions":7,"deletions":1,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:01:09Z"}
,{"id":"2489651618","type":"PushEvent","actor":{"id":3677711,"login":"eranif","gravatar_id":"","url":"https://api.github.com/users/eranif","avatar_url":"https://avatars.githubusercontent.com/u/3677711?"},"repo":{"id":16066615,"name":"eranif/codelite","url":"https://api.github.com/repos/eranif/codelite"},"payload":{"push_id":536864244,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"cec26e3ca2b7aff57a519651f133b389859fbdf9","before":"682764fee0a3db54456d1b1cfd8d44ad240d53c8","commits":[{"sha":"cec26e3ca2b7aff57a519651f133b389859fbdf9","author":{"email":"a09b99f04bac94993f20a01f321dd533fa9e2be7@pc-erany.zend.net","name":"unknown"},"message":"Updated template projects's resource file to include 64 bit support","distinct":true,"url":"https://api.github.com/repos/eranif/codelite/commits/cec26e3ca2b7aff57a519651f133b389859fbdf9"}]},"public":true,"created_at":"2015-01-01T15:01:09Z"}
,{"id":"2489651626","type":"IssueCommentEvent","actor":{"id":5392783,"login":"moyamo","gravatar_id":"","url":"https://api.github.com/users/moyamo","avatar_url":"https://avatars.githubusercontent.com/u/5392783?"},"repo":{"id":8177778,"name":"koalalorenzo/python-digitalocean","url":"https://api.github.com/repos/koalalorenzo/python-digitalocean"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/issues/76","labels_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/issues/76/labels{/name}","comments_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/issues/76/comments","events_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/issues/76/events","html_url":"https://github.com/koalalorenzo/python-digitalocean/issues/76","id":52948575,"number":76,"title":"Should be able to specify ssh key by fingerprint","user":{"login":"Janzert","id":392930,"avatar_url":"https://avatars.githubusercontent.com/u/392930?v=3","gravatar_id":"","url":"https://api.github.com/users/Janzert","html_url":"https://github.com/Janzert","followers_url":"https://api.github.com/users/Janzert/followers","following_url":"https://api.github.com/users/Janzert/following{/other_user}","gists_url":"https://api.github.com/users/Janzert/gists{/gist_id}","starred_url":"https://api.github.com/users/Janzert/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Janzert/subscriptions","organizations_url":"https://api.github.com/users/Janzert/orgs","repos_url":"https://api.github.com/users/Janzert/repos","events_url":"https://api.github.com/users/Janzert/events{/privacy}","received_events_url":"https://api.github.com/users/Janzert/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/labels/enhancement","name":"enhancement","color":"84b6eb"}],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":2,"created_at":"2014-12-27T05:10:10Z","updated_at":"2015-01-01T15:01:10Z","closed_at":null,"body":"When creating a droplet you should be able to give a key fingerprint to Droplet.create(). The current code tries to interpret any string as an actual public key.\r\n\r\nAdding an additional check to see if it's a fingerprint, instead of a full public key, after finding a string in Droplet.__get_ssh_keys_id and then directly adding the fingerprint to the id list allows it to work."},"comment":{"url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/issues/comments/68488516","html_url":"https://github.com/koalalorenzo/python-digitalocean/issues/76#issuecomment-68488516","issue_url":"https://api.github.com/repos/koalalorenzo/python-digitalocean/issues/76","id":68488516,"user":{"login":"moyamo","id":5392783,"avatar_url":"https://avatars.githubusercontent.com/u/5392783?v=3","gravatar_id":"","url":"https://api.github.com/users/moyamo","html_url":"https://github.com/moyamo","followers_url":"https://api.github.com/users/moyamo/followers","following_url":"https://api.github.com/users/moyamo/following{/other_user}","gists_url":"https://api.github.com/users/moyamo/gists{/gist_id}","starred_url":"https://api.github.com/users/moyamo/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/moyamo/subscriptions","organizations_url":"https://api.github.com/users/moyamo/orgs","repos_url":"https://api.github.com/users/moyamo/repos","events_url":"https://api.github.com/users/moyamo/events{/privacy}","received_events_url":"https://api.github.com/users/moyamo/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:01:10Z","updated_at":"2015-01-01T15:01:10Z","body":"See https://github.com/koalalorenzo/python-digitalocean/pull/77\r\n\r\nThis might be what you are looking for. However it assumes your ssh_key is 16 pairs of hexadecimal digits separated by a colon."}},"public":true,"created_at":"2015-01-01T15:01:10Z"}
,{"id":"2489651627","type":"CreateEvent","actor":{"id":2738277,"login":"FiLeVeR10","gravatar_id":"","url":"https://api.github.com/users/FiLeVeR10","avatar_url":"https://avatars.githubusercontent.com/u/2738277?"},"repo":{"id":28688614,"name":"FiLeVeR10/zenity-ui","url":"https://api.github.com/repos/FiLeVeR10/zenity-ui"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"Terminal based user interface for Zenity","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:01:10Z"}
,{"id":"2489651630","type":"PushEvent","actor":{"id":1643245,"login":"cdpython","gravatar_id":"","url":"https://api.github.com/users/cdpython","avatar_url":"https://avatars.githubusercontent.com/u/1643245?"},"repo":{"id":28260344,"name":"cdpython/blog","url":"https://api.github.com/repos/cdpython/blog"},"payload":{"push_id":536864250,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"9ebf416a1e3e195dcbf1067d312f7e222c2b803d","before":"9e2d5afb1550cdceb14eb73095266e2b967ec672","commits":[{"sha":"9ebf416a1e3e195dcbf1067d312f7e222c2b803d","author":{"email":"71bc4425870fbe857f135fc454820feec4c7d880@gmail.com","name":"cdpython"},"message":"rebuilding site 2015년 1월 2일 금요일 00시 01분 05초 KST","distinct":true,"url":"https://api.github.com/repos/cdpython/blog/commits/9ebf416a1e3e195dcbf1067d312f7e222c2b803d"}]},"public":true,"created_at":"2015-01-01T15:01:11Z"}
,{"id":"2489651634","type":"CreateEvent","actor":{"id":10364738,"login":"Fisab","gravatar_id":"","url":"https://api.github.com/users/Fisab","avatar_url":"https://avatars.githubusercontent.com/u/10364738?"},"repo":{"id":28688615,"name":"Fisab/fisab","url":"https://api.github.com/repos/Fisab/fisab"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"Fisab","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:01:11Z"}
,{"id":"2489651635","type":"PushEvent","actor":{"id":7085564,"login":"manuth","gravatar_id":"","url":"https://api.github.com/users/manuth","avatar_url":"https://avatars.githubusercontent.com/u/7085564?"},"repo":{"id":27093817,"name":"manuth/Untitled-Project","url":"https://api.github.com/repos/manuth/Untitled-Project"},"payload":{"push_id":536864253,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"3ebcb152700b714aa4eedc6c37bc49994caaca93","before":"a2c92aab59da756ee498e0c015d0ae2c2d8104a5","commits":[{"sha":"3ebcb152700b714aa4eedc6c37bc49994caaca93","author":{"email":"21be835e24113c517b59468ee88756c27c039486@gmail.com","name":"manuth"},"message":"01.01.15","distinct":true,"url":"https://api.github.com/repos/manuth/Untitled-Project/commits/3ebcb152700b714aa4eedc6c37bc49994caaca93"}]},"public":true,"created_at":"2015-01-01T15:01:11Z"}
,{"id":"2489651637","type":"DeleteEvent","actor":{"id":253237,"login":"Jamesking56","gravatar_id":"","url":"https://api.github.com/users/Jamesking56","avatar_url":"https://avatars.githubusercontent.com/u/253237?"},"repo":{"id":28677238,"name":"Jamesking56/Cachet","url":"https://api.github.com/repos/Jamesking56/Cachet"},"payload":{"ref":"seeding-fixes","ref_type":"branch","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:01:12Z"}
,{"id":"2489651638","type":"PushEvent","actor":{"id":5059195,"login":"Blimeo","gravatar_id":"","url":"https://api.github.com/users/Blimeo","avatar_url":"https://avatars.githubusercontent.com/u/5059195?"},"repo":{"id":28688096,"name":"Blimeo/blimeo.github.io","url":"https://api.github.com/repos/Blimeo/blimeo.github.io"},"payload":{"push_id":536864256,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"aa0a4decc8475d7af6b33b6fea69d6102e5b06ba","before":"c2d7a0295ac9c1b5f66c4905b15554837dd6af36","commits":[{"sha":"aa0a4decc8475d7af6b33b6fea69d6102e5b06ba","author":{"email":"05c0269870804bada1f091d378fdd69482fe0000@yahoo.com","name":"Matthew Ye"},"message":"fake and gay\n\naaaaaaaaa","distinct":true,"url":"https://api.github.com/repos/Blimeo/blimeo.github.io/commits/aa0a4decc8475d7af6b33b6fea69d6102e5b06ba"}]},"public":true,"created_at":"2015-01-01T15:01:12Z"}
,{"id":"2489651649","type":"WatchEvent","actor":{"id":158963,"login":"destroytoday","gravatar_id":"","url":"https://api.github.com/users/destroytoday","avatar_url":"https://avatars.githubusercontent.com/u/158963?"},"repo":{"id":5594091,"name":"stubbornella/type-o-matic","url":"https://api.github.com/repos/stubbornella/type-o-matic"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:01:13Z"}
,{"id":"2489651650","type":"WatchEvent","actor":{"id":231889,"login":"matthiasg","gravatar_id":"","url":"https://api.github.com/users/matthiasg","avatar_url":"https://avatars.githubusercontent.com/u/231889?"},"repo":{"id":24953448,"name":"google/material-design-icons","url":"https://api.github.com/repos/google/material-design-icons"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:01:13Z","org":{"id":1342004,"login":"google","gravatar_id":"","url":"https://api.github.com/orgs/google","avatar_url":"https://avatars.githubusercontent.com/u/1342004?"}}
,{"id":"2489651651","type":"CreateEvent","actor":{"id":10364582,"login":"AxelRL","gravatar_id":"","url":"https://api.github.com/users/AxelRL","avatar_url":"https://avatars.githubusercontent.com/u/10364582?"},"repo":{"id":28688617,"name":"AxelRL/AxelRL.github.io","url":"https://api.github.com/repos/AxelRL/AxelRL.github.io"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"Min hemsida","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:01:13Z"}
,{"id":"2489651653","type":"PushEvent","actor":{"id":688408,"login":"itadakimas","gravatar_id":"","url":"https://api.github.com/users/itadakimas","avatar_url":"https://avatars.githubusercontent.com/u/688408?"},"repo":{"id":28281944,"name":"itadakimas/maths-matrices","url":"https://api.github.com/repos/itadakimas/maths-matrices"},"payload":{"push_id":536864258,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"1c2bb4ad99120f7f762a972585571e646cc0c166","before":"3ab4db0b0fa6a62a993332263ba6089cf8fe7e00","commits":[{"sha":"1c2bb4ad99120f7f762a972585571e646cc0c166","author":{"email":"b45971ad8f7dfc534e0f776a310b9b42fffccd6d@nolaroads.com","name":"Said AHEMT"},"message":"ajoute la méthode Matrix::debugHTML","distinct":true,"url":"https://api.github.com/repos/itadakimas/maths-matrices/commits/1c2bb4ad99120f7f762a972585571e646cc0c166"}]},"public":true,"created_at":"2015-01-01T15:01:14Z"}
,{"id":"2489651659","type":"DeleteEvent","actor":{"id":1646422,"login":"brunocarvalhodearaujo","gravatar_id":"","url":"https://api.github.com/users/brunocarvalhodearaujo","avatar_url":"https://avatars.githubusercontent.com/u/1646422?"},"repo":{"id":28688285,"name":"brunocarvalhodearaujo/datastore","url":"https://api.github.com/repos/brunocarvalhodearaujo/datastore"},"payload":{"ref":"0.2","ref_type":"branch","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:01:15Z"}
,{"id":"2489651660","type":"PushEvent","actor":{"id":1641302,"login":"michey","gravatar_id":"","url":"https://api.github.com/users/michey","avatar_url":"https://avatars.githubusercontent.com/u/1641302?"},"repo":{"id":28687752,"name":"michey/templates-LUFA","url":"https://api.github.com/repos/michey/templates-LUFA"},"payload":{"push_id":536864261,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"b836b229dbb499f6b3985227b90f5ccc0ca9373a","before":"4fe49b3eb044bf7bdbcb7b30e60584b0671633e4","commits":[{"sha":"cae993e897a3727773a58bb2bc855b4679b2a822","author":{"email":"227eeb00d9a94e3b8793a07fc26d817b03e5d1b5@gmail.com","name":"Alexander Mihailov"},"message":"add changes in makefiles, some sort of support of xcode, and programming posibility","distinct":true,"url":"https://api.github.com/repos/michey/templates-LUFA/commits/cae993e897a3727773a58bb2bc855b4679b2a822"},{"sha":"b836b229dbb499f6b3985227b90f5ccc0ca9373a","author":{"email":"227eeb00d9a94e3b8793a07fc26d817b03e5d1b5@gmail.com","name":"Alexander Mihailov"},"message":" add changes in makefiles, some sort of support of xcode, and programming posibility","distinct":true,"url":"https://api.github.com/repos/michey/templates-LUFA/commits/b836b229dbb499f6b3985227b90f5ccc0ca9373a"}]},"public":true,"created_at":"2015-01-01T15:01:15Z"}
,{"id":"2489651661","type":"ForkEvent","actor":{"id":1772762,"login":"mobilipia","gravatar_id":"","url":"https://api.github.com/users/mobilipia","avatar_url":"https://avatars.githubusercontent.com/u/1772762?"},"repo":{"id":481412,"name":"TooTallNate/Java-WebSocket","url":"https://api.github.com/repos/TooTallNate/Java-WebSocket"},"payload":{"forkee":{"id":28688618,"name":"Java-WebSocket","full_name":"mobilipia/Java-WebSocket","owner":{"login":"mobilipia","id":1772762,"avatar_url":"https://avatars.githubusercontent.com/u/1772762?v=3","gravatar_id":"","url":"https://api.github.com/users/mobilipia","html_url":"https://github.com/mobilipia","followers_url":"https://api.github.com/users/mobilipia/followers","following_url":"https://api.github.com/users/mobilipia/following{/other_user}","gists_url":"https://api.github.com/users/mobilipia/gists{/gist_id}","starred_url":"https://api.github.com/users/mobilipia/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mobilipia/subscriptions","organizations_url":"https://api.github.com/users/mobilipia/orgs","repos_url":"https://api.github.com/users/mobilipia/repos","events_url":"https://api.github.com/users/mobilipia/events{/privacy}","received_events_url":"https://api.github.com/users/mobilipia/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/mobilipia/Java-WebSocket","description":"A barebones WebSocket client and server implementation written in 100% Java.","fork":true,"url":"https://api.github.com/repos/mobilipia/Java-WebSocket","forks_url":"https://api.github.com/repos/mobilipia/Java-WebSocket/forks","keys_url":"https://api.github.com/repos/mobilipia/Java-WebSocket/keys{/key_id}","collaborators_url":"https://api.github.com/repos/mobilipia/Java-WebSocket/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/mobilipia/Java-WebSocket/teams","hooks_url":"https://api.github.com/repos/mobilipia/Java-WebSocket/hooks","issue_events_url":"https://api.github.com/repos/mobilipia/Java-WebSocket/issues/events{/number}","events_url":"https://api.github.com/repos/mobilipia/Java-WebSocket/events","assignees_url":"https://api.github.com/repos/mobilipia/Java-WebSocket/assignees{/user}","branches_url":"https://api.github.com/repos/mobilipia/Java-WebSocket/branches{/branch}","tags_url":"https://api.github.com/repos/mobilipia/Java-WebSocket/tags","blobs_url":"https://api.github.com/repos/mobilipia/Java-WebSocket/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/mobilipia/Java-WebSocket/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/mobilipia/Java-WebSocket/git/refs{/sha}","trees_url":"https://api.github.com/repos/mobilipia/Java-WebSocket/git/trees{/sha}","statuses_url":"https://api.github.com/repos/mobilipia/Java-WebSocket/statuses/{sha}","languages_url":"https://api.github.com/repos/mobilipia/Java-WebSocket/languages","stargazers_url":"https://api.github.com/repos/mobilipia/Java-WebSocket/stargazers","contributors_url":"https://api.github.com/repos/mobilipia/Java-WebSocket/contributors","subscribers_url":"https://api.github.com/repos/mobilipia/Java-WebSocket/subscribers","subscription_url":"https://api.github.com/repos/mobilipia/Java-WebSocket/subscription","commits_url":"https://api.github.com/repos/mobilipia/Java-WebSocket/commits{/sha}","git_commits_url":"https://api.github.com/repos/mobilipia/Java-WebSocket/git/commits{/sha}","comments_url":"https://api.github.com/repos/mobilipia/Java-WebSocket/comments{/number}","issue_comment_url":"https://api.github.com/repos/mobilipia/Java-WebSocket/issues/comments/{number}","contents_url":"https://api.github.com/repos/mobilipia/Java-WebSocket/contents/{+path}","compare_url":"https://api.github.com/repos/mobilipia/Java-WebSocket/compare/{base}...{head}","merges_url":"https://api.github.com/repos/mobilipia/Java-WebSocket/merges","archive_url":"https://api.github.com/repos/mobilipia/Java-WebSocket/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/mobilipia/Java-WebSocket/downloads","issues_url":"https://api.github.com/repos/mobilipia/Java-WebSocket/issues{/number}","pulls_url":"https://api.github.com/repos/mobilipia/Java-WebSocket/pulls{/number}","milestones_url":"https://api.github.com/repos/mobilipia/Java-WebSocket/milestones{/number}","notifications_url":"https://api.github.com/repos/mobilipia/Java-WebSocket/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/mobilipia/Java-WebSocket/labels{/name}","releases_url":"https://api.github.com/repos/mobilipia/Java-WebSocket/releases{/id}","created_at":"2015-01-01T15:01:15Z","updated_at":"2014-12-31T07:36:27Z","pushed_at":"2014-08-09T20:29:29Z","git_url":"git://github.com/mobilipia/Java-WebSocket.git","ssh_url":"git@github.com:mobilipia/Java-WebSocket.git","clone_url":"https://github.com/mobilipia/Java-WebSocket.git","svn_url":"https://github.com/mobilipia/Java-WebSocket","homepage":"http://java-websocket.org/","size":4307,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":false,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master","public":true}},"public":true,"created_at":"2015-01-01T15:01:15Z"}
,{"id":"2489651663","type":"WatchEvent","actor":{"id":732366,"login":"0xfeeddeadbeef","gravatar_id":"","url":"https://api.github.com/users/0xfeeddeadbeef","avatar_url":"https://avatars.githubusercontent.com/u/732366?"},"repo":{"id":28465385,"name":"onlyutkarsh/OpenConfigurationManager","url":"https://api.github.com/repos/onlyutkarsh/OpenConfigurationManager"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:01:15Z"}
,{"id":"2489651664","type":"PushEvent","actor":{"id":46095,"login":"MeirKriheli","gravatar_id":"","url":"https://api.github.com/users/MeirKriheli","avatar_url":"https://avatars.githubusercontent.com/u/46095?"},"repo":{"id":1567485,"name":"MeirKriheli/Open-Knesset","url":"https://api.github.com/repos/MeirKriheli/Open-Knesset"},"payload":{"push_id":536864262,"size":14,"distinct_size":14,"ref":"refs/heads/master","head":"456e518e0b48e87c7137e40d7bba03823e173caa","before":"75714af1397dd841d40433ed1856c66338542ced","commits":[{"sha":"3c4e638529c53ec270d61bfd3e63679ac9b52a3f","author":{"email":"154288d802a050a5a22453e68c3b1902661df990@gmail.com","name":"Benny Daon"},"message":"Add a Committee property - `gender_presence`","distinct":true,"url":"https://api.github.com/repos/MeirKriheli/Open-Knesset/commits/3c4e638529c53ec270d61bfd3e63679ac9b52a3f"},{"sha":"fef18fd92990b08d5003a25d10206f9ff65e4c4c","author":{"email":"154288d802a050a5a22453e68c3b1902661df990@gmail.com","name":"Benny Daon"},"message":"Merge branch 'master' of github.com:hasadna/Open-Knesset","distinct":true,"url":"https://api.github.com/repos/MeirKriheli/Open-Knesset/commits/fef18fd92990b08d5003a25d10206f9ff65e4c4c"},{"sha":"c89932c0ecbadff5c8f9959510d06997a6ed0fb3","author":{"email":"6c720b6ece72a4972cc39d6436cb370514e267ec@uumpa.com","name":"Ori Hoch"},"message":"added scraper that gets events for an mk and stores in new mks.models.Event model","distinct":true,"url":"https://api.github.com/repos/MeirKriheli/Open-Knesset/commits/c89932c0ecbadff5c8f9959510d06997a6ed0fb3"},{"sha":"c360401e58f3d8b7f3ec1323814dfe579a80e0bb","author":{"email":"6c720b6ece72a4972cc39d6436cb370514e267ec@uumpa.com","name":"Ori Hoch"},"message":"added color and updating of events","distinct":true,"url":"https://api.github.com/repos/MeirKriheli/Open-Knesset/commits/c360401e58f3d8b7f3ec1323814dfe579a80e0bb"},{"sha":"fd1eeab673f7c647cb4005c89d90ca30f7d4b6e4","author":{"email":"154288d802a050a5a22453e68c3b1902661df990@gmail.com","name":"Benny Daon"},"message":"Merge commit 'c360401e58f3d8b7f3ec1323814dfe579a80e0bb'","distinct":true,"url":"https://api.github.com/repos/MeirKriheli/Open-Knesset/commits/fd1eeab673f7c647cb4005c89d90ca30f7d4b6e4"},{"sha":"a36b64fd04626f9d662135a25eea9e22fd155108","author":{"email":"154288d802a050a5a22453e68c3b1902661df990@gmail.com","name":"Benny Daon"},"message":"Improving the google calendar interface\n\nStop the url and last sync token in the persons.Person model so it'll be\nopen to more users and store the events in events.Event.","distinct":true,"url":"https://api.github.com/repos/MeirKriheli/Open-Knesset/commits/a36b64fd04626f9d662135a25eea9e22fd155108"},{"sha":"30872810bdd9d31a9b82a3bea5c5d558399f2f38","author":{"email":"154288d802a050a5a22453e68c3b1902661df990@gmail.com","name":"Benny Daon"},"message":"Improving the google calendar interface #279\n\nStop the url and last sync token in the persons.Person model so it'll be\nopen to more users and store the events in events.Event.","distinct":true,"url":"https://api.github.com/repos/MeirKriheli/Open-Knesset/commits/30872810bdd9d31a9b82a3bea5c5d558399f2f38"},{"sha":"7db3cb347f0b5e85a798aabf495924c84b4d1949","author":{"email":"154288d802a050a5a22453e68c3b1902661df990@gmail.com","name":"Benny Daon"},"message":"Merge branch 'master' of github.com:daonb/Open-Knesset","distinct":true,"url":"https://api.github.com/repos/MeirKriheli/Open-Knesset/commits/7db3cb347f0b5e85a798aabf495924c84b4d1949"},{"sha":"1df2040e6e82a4bb14dfa60491945b171bdb2461","author":{"email":"154288d802a050a5a22453e68c3b1902661df990@gmail.com","name":"Benny Daon"},"message":"Merge branch 'master' of github.com:hasadna/Open-Knesset","distinct":true,"url":"https://api.github.com/repos/MeirKriheli/Open-Knesset/commits/1df2040e6e82a4bb14dfa60491945b171bdb2461"},{"sha":"4541f36ffd4519c78683adcee7754611495eaa2f","author":{"email":"154288d802a050a5a22453e68c3b1902661df990@gmail.com","name":"Benny Daon"},"message":"removing a deprecated debug toolbar setting","distinct":true,"url":"https://api.github.com/repos/MeirKriheli/Open-Knesset/commits/4541f36ffd4519c78683adcee7754611495eaa2f"},{"sha":"21ef3bfac0ebee5c0281045c19e9028efb28d767","author":{"email":"154288d802a050a5a22453e68c3b1902661df990@gmail.com","name":"Benny Daon"},"message":"Remove the Plenum from the member API","distinct":true,"url":"https://api.github.com/repos/MeirKriheli/Open-Knesset/commits/21ef3bfac0ebee5c0281045c19e9028efb28d767"},{"sha":"c666d1315b224a87be7d9335eece426e0e8dd1a6","author":{"email":"154288d802a050a5a22453e68c3b1902661df990@gmail.com","name":"Benny Daon"},"message":"Merge branch 'master' of github.com:hasadna/Open-Knesset","distinct":true,"url":"https://api.github.com/repos/MeirKriheli/Open-Knesset/commits/c666d1315b224a87be7d9335eece426e0e8dd1a6"},{"sha":"5cefdda3a0426a24d2a2c077587e311dbfdc317f","author":{"email":"bc8b4c28eff55b2f78fad6f180c722f27abee02f@gmail.com","name":"Meir Kriheli"},"message":"Add API docs link to README","distinct":true,"url":"https://api.github.com/repos/MeirKriheli/Open-Knesset/commits/5cefdda3a0426a24d2a2c077587e311dbfdc317f"},{"sha":"456e518e0b48e87c7137e40d7bba03823e173caa","author":{"email":"bc8b4c28eff55b2f78fad6f180c722f27abee02f@gmail.com","name":"Meir Kriheli"},"message":"Merge branch 'master' of https://github.com/daonb/Open-Knesset","distinct":true,"url":"https://api.github.com/repos/MeirKriheli/Open-Knesset/commits/456e518e0b48e87c7137e40d7bba03823e173caa"}]},"public":true,"created_at":"2015-01-01T15:01:15Z"}
,{"id":"2489651673","type":"PushEvent","actor":{"id":10321481,"login":"Fumes007","gravatar_id":"","url":"https://api.github.com/users/Fumes007","avatar_url":"https://avatars.githubusercontent.com/u/10321481?"},"repo":{"id":28531568,"name":"Fumes007/Material","url":"https://api.github.com/repos/Fumes007/Material"},"payload":{"push_id":536864266,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"d7de2454a06334c5d624f595181e521e290374a8","before":"55bb4ee4491c43b6f1428585a971aa291aff2be9","commits":[{"sha":"d7de2454a06334c5d624f595181e521e290374a8","author":{"email":"e0228c2ed04989008c35d09539476c25f93c0420@gmail.com","name":"Fumes007"},"message":"added material design spec","distinct":true,"url":"https://api.github.com/repos/Fumes007/Material/commits/d7de2454a06334c5d624f595181e521e290374a8"}]},"public":true,"created_at":"2015-01-01T15:01:16Z"}
,{"id":"2489651677","type":"IssuesEvent","actor":{"id":5221013,"login":"stevelaskaridis","gravatar_id":"","url":"https://api.github.com/users/stevelaskaridis","avatar_url":"https://avatars.githubusercontent.com/u/5221013?"},"repo":{"id":25934134,"name":"thessrb/thessrbio","url":"https://api.github.com/repos/thessrb/thessrbio"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/thessrb/thessrbio/issues/48","labels_url":"https://api.github.com/repos/thessrb/thessrbio/issues/48/labels{/name}","comments_url":"https://api.github.com/repos/thessrb/thessrbio/issues/48/comments","events_url":"https://api.github.com/repos/thessrb/thessrbio/issues/48/events","html_url":"https://github.com/thessrb/thessrbio/issues/48","id":53221360,"number":48,"title":"Members pages shoutout typo?","user":{"login":"stevelaskaridis","id":5221013,"avatar_url":"https://avatars.githubusercontent.com/u/5221013?v=3","gravatar_id":"","url":"https://api.github.com/users/stevelaskaridis","html_url":"https://github.com/stevelaskaridis","followers_url":"https://api.github.com/users/stevelaskaridis/followers","following_url":"https://api.github.com/users/stevelaskaridis/following{/other_user}","gists_url":"https://api.github.com/users/stevelaskaridis/gists{/gist_id}","starred_url":"https://api.github.com/users/stevelaskaridis/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/stevelaskaridis/subscriptions","organizations_url":"https://api.github.com/users/stevelaskaridis/orgs","repos_url":"https://api.github.com/users/stevelaskaridis/repos","events_url":"https://api.github.com/users/stevelaskaridis/events{/privacy}","received_events_url":"https://api.github.com/users/stevelaskaridis/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:01:17Z","updated_at":"2015-01-01T15:01:17Z","closed_at":null,"body":"In the members page, inside the *shoutout*, shouldn't it be \"Shame on you\" instead of \"Same on you\" ?\r\n\r\n![capture](https://cloud.githubusercontent.com/assets/5221013/5592433/8f9f86aa-91d7-11e4-8b78-e82eccbc4775.PNG)"}},"public":true,"created_at":"2015-01-01T15:01:17Z","org":{"id":896873,"login":"thessrb","gravatar_id":"","url":"https://api.github.com/orgs/thessrb","avatar_url":"https://avatars.githubusercontent.com/u/896873?"}}
,{"id":"2489651680","type":"PushEvent","actor":{"id":9966277,"login":"mdt207","gravatar_id":"","url":"https://api.github.com/users/mdt207","avatar_url":"https://avatars.githubusercontent.com/u/9966277?"},"repo":{"id":28688526,"name":"mdt207/GDo-kon","url":"https://api.github.com/repos/mdt207/GDo-kon"},"payload":{"push_id":536864269,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"aa58de709261b4a3ac0e7d40d9439c7220fe9938","before":"2333934e60ef09cbf636c698b49dfb40900aeaab","commits":[{"sha":"aa58de709261b4a3ac0e7d40d9439c7220fe9938","author":{"email":"cd28f5565289ed460fbe3a6d5b63448195cd90ae@gmail.com","name":"MDT"},"message":"Create main.cpp","distinct":true,"url":"https://api.github.com/repos/mdt207/GDo-kon/commits/aa58de709261b4a3ac0e7d40d9439c7220fe9938"}]},"public":true,"created_at":"2015-01-01T15:01:17Z"}
,{"id":"2489651685","type":"WatchEvent","actor":{"id":677030,"login":"Sleavely","gravatar_id":"","url":"https://api.github.com/users/Sleavely","avatar_url":"https://avatars.githubusercontent.com/u/677030?"},"repo":{"id":5543656,"name":"meltingice/psd.js","url":"https://api.github.com/repos/meltingice/psd.js"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:01:17Z"}
,{"id":"2489651687","type":"PushEvent","actor":{"id":1643245,"login":"cdpython","gravatar_id":"","url":"https://api.github.com/users/cdpython","avatar_url":"https://avatars.githubusercontent.com/u/1643245?"},"repo":{"id":28496455,"name":"cdpython/cdpython.github.io","url":"https://api.github.com/repos/cdpython/cdpython.github.io"},"payload":{"push_id":536864273,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"047f64b8219162e85ec2e6b5555dd6f64ccbb5e3","before":"7f904656f835bb5f95531e7ba9dd5da713e32648","commits":[{"sha":"047f64b8219162e85ec2e6b5555dd6f64ccbb5e3","author":{"email":"71bc4425870fbe857f135fc454820feec4c7d880@gmail.com","name":"cdpython"},"message":"rebuilding site 2015년 1월 2일 금요일 00시 01분 05초 KST","distinct":true,"url":"https://api.github.com/repos/cdpython/cdpython.github.io/commits/047f64b8219162e85ec2e6b5555dd6f64ccbb5e3"}]},"public":true,"created_at":"2015-01-01T15:01:17Z"}
,{"id":"2489651688","type":"IssueCommentEvent","actor":{"id":23058,"login":"davydotcom","gravatar_id":"","url":"https://api.github.com/users/davydotcom","avatar_url":"https://avatars.githubusercontent.com/u/23058?"},"repo":{"id":7763363,"name":"ratpack/ratpack","url":"https://api.github.com/repos/ratpack/ratpack"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/ratpack/ratpack/issues/537","labels_url":"https://api.github.com/repos/ratpack/ratpack/issues/537/labels{/name}","comments_url":"https://api.github.com/repos/ratpack/ratpack/issues/537/comments","events_url":"https://api.github.com/repos/ratpack/ratpack/issues/537/events","html_url":"https://github.com/ratpack/ratpack/issues/537","id":53108739,"number":537,"title":"Improved configurability of asset handler","user":{"login":"alkemist","id":17825,"avatar_url":"https://avatars.githubusercontent.com/u/17825?v=3","gravatar_id":"","url":"https://api.github.com/users/alkemist","html_url":"https://github.com/alkemist","followers_url":"https://api.github.com/users/alkemist/followers","following_url":"https://api.github.com/users/alkemist/following{/other_user}","gists_url":"https://api.github.com/users/alkemist/gists{/gist_id}","starred_url":"https://api.github.com/users/alkemist/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/alkemist/subscriptions","organizations_url":"https://api.github.com/users/alkemist/orgs","repos_url":"https://api.github.com/users/alkemist/repos","events_url":"https://api.github.com/users/alkemist/events{/privacy}","received_events_url":"https://api.github.com/users/alkemist/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/ratpack/ratpack/labels/good-first-contrib","name":"good-first-contrib","color":"00c5fe"}],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":5,"created_at":"2014-12-30T11:08:31Z","updated_at":"2015-01-01T15:01:17Z","closed_at":null,"body":"Our asset handling is too simplistic. I'd like to change things around to make the asset handling more configurable, by introducing a builder for asset handlers.\r\n\r\nWe should introduce…\r\n\r\n```\r\npackage ratpack.file\r\n\r\ninterface AssetHandlerSpec {\r\n AssetHandlerSpec compressionMinSize(int bytes)\r\n AssetHandlerSpec indexFiles(String... indexFiles)\r\n AssetHandlerSpec noCompress(String mimeTypes)\r\n}\r\n```\r\n\r\nThe asset handler method on `Handlers` and corresponding `Chain` method will change to…\r\n\r\n```\r\nHandler assets(LaunchConfig launchConfig, String path, Action<? super AssetHandlerSpec> config)\r\n```\r\n\r\nWe can then remove the related items from launch config.\r\n\r\nThis will also require some reworking of the file serving internals to support more decisions being made about how to render the file at the handler level instead of the internal transmitter.\r\n"},"comment":{"url":"https://api.github.com/repos/ratpack/ratpack/issues/comments/68488518","html_url":"https://github.com/ratpack/ratpack/issues/537#issuecomment-68488518","issue_url":"https://api.github.com/repos/ratpack/ratpack/issues/537","id":68488518,"user":{"login":"davydotcom","id":23058,"avatar_url":"https://avatars.githubusercontent.com/u/23058?v=3","gravatar_id":"","url":"https://api.github.com/users/davydotcom","html_url":"https://github.com/davydotcom","followers_url":"https://api.github.com/users/davydotcom/followers","following_url":"https://api.github.com/users/davydotcom/following{/other_user}","gists_url":"https://api.github.com/users/davydotcom/gists{/gist_id}","starred_url":"https://api.github.com/users/davydotcom/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/davydotcom/subscriptions","organizations_url":"https://api.github.com/users/davydotcom/orgs","repos_url":"https://api.github.com/users/davydotcom/repos","events_url":"https://api.github.com/users/davydotcom/events{/privacy}","received_events_url":"https://api.github.com/users/davydotcom/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:01:17Z","updated_at":"2015-01-01T15:01:17Z","body":"gzipping*"}},"public":true,"created_at":"2015-01-01T15:01:18Z","org":{"id":3344496,"login":"ratpack","gravatar_id":"","url":"https://api.github.com/orgs/ratpack","avatar_url":"https://avatars.githubusercontent.com/u/3344496?"}}
,{"id":"2489651690","type":"PullRequestEvent","actor":{"id":2884455,"login":"chrisduan","gravatar_id":"","url":"https://api.github.com/users/chrisduan","avatar_url":"https://avatars.githubusercontent.com/u/2884455?"},"repo":{"id":28683221,"name":"chrisduan/mychat","url":"https://api.github.com/repos/chrisduan/mychat"},"payload":{"action":"closed","number":3,"pull_request":{"url":"https://api.github.com/repos/chrisduan/mychat/pulls/3","id":26743779,"html_url":"https://github.com/chrisduan/mychat/pull/3","diff_url":"https://github.com/chrisduan/mychat/pull/3.diff","patch_url":"https://github.com/chrisduan/mychat/pull/3.patch","issue_url":"https://api.github.com/repos/chrisduan/mychat/issues/3","number":3,"state":"closed","locked":false,"title":"modify README.md,log develop plan","user":{"login":"chrisduan","id":2884455,"avatar_url":"https://avatars.githubusercontent.com/u/2884455?v=3","gravatar_id":"","url":"https://api.github.com/users/chrisduan","html_url":"https://github.com/chrisduan","followers_url":"https://api.github.com/users/chrisduan/followers","following_url":"https://api.github.com/users/chrisduan/following{/other_user}","gists_url":"https://api.github.com/users/chrisduan/gists{/gist_id}","starred_url":"https://api.github.com/users/chrisduan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/chrisduan/subscriptions","organizations_url":"https://api.github.com/users/chrisduan/orgs","repos_url":"https://api.github.com/users/chrisduan/repos","events_url":"https://api.github.com/users/chrisduan/events{/privacy}","received_events_url":"https://api.github.com/users/chrisduan/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:01:09Z","updated_at":"2015-01-01T15:01:18Z","closed_at":"2015-01-01T15:01:17Z","merged_at":"2015-01-01T15:01:17Z","merge_commit_sha":"da8dfd9ed1f00ec3436b9b74333d7699962908a9","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/chrisduan/mychat/pulls/3/commits","review_comments_url":"https://api.github.com/repos/chrisduan/mychat/pulls/3/comments","review_comment_url":"https://api.github.com/repos/chrisduan/mychat/pulls/comments/{number}","comments_url":"https://api.github.com/repos/chrisduan/mychat/issues/3/comments","statuses_url":"https://api.github.com/repos/chrisduan/mychat/statuses/016f0ee4b973069e79ef87e2248d8df2c7cc8cd8","head":{"label":"chrisduan:task","ref":"task","sha":"016f0ee4b973069e79ef87e2248d8df2c7cc8cd8","user":{"login":"chrisduan","id":2884455,"avatar_url":"https://avatars.githubusercontent.com/u/2884455?v=3","gravatar_id":"","url":"https://api.github.com/users/chrisduan","html_url":"https://github.com/chrisduan","followers_url":"https://api.github.com/users/chrisduan/followers","following_url":"https://api.github.com/users/chrisduan/following{/other_user}","gists_url":"https://api.github.com/users/chrisduan/gists{/gist_id}","starred_url":"https://api.github.com/users/chrisduan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/chrisduan/subscriptions","organizations_url":"https://api.github.com/users/chrisduan/orgs","repos_url":"https://api.github.com/users/chrisduan/repos","events_url":"https://api.github.com/users/chrisduan/events{/privacy}","received_events_url":"https://api.github.com/users/chrisduan/received_events","type":"User","site_admin":false},"repo":{"id":28683221,"name":"mychat","full_name":"chrisduan/mychat","owner":{"login":"chrisduan","id":2884455,"avatar_url":"https://avatars.githubusercontent.com/u/2884455?v=3","gravatar_id":"","url":"https://api.github.com/users/chrisduan","html_url":"https://github.com/chrisduan","followers_url":"https://api.github.com/users/chrisduan/followers","following_url":"https://api.github.com/users/chrisduan/following{/other_user}","gists_url":"https://api.github.com/users/chrisduan/gists{/gist_id}","starred_url":"https://api.github.com/users/chrisduan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/chrisduan/subscriptions","organizations_url":"https://api.github.com/users/chrisduan/orgs","repos_url":"https://api.github.com/users/chrisduan/repos","events_url":"https://api.github.com/users/chrisduan/events{/privacy}","received_events_url":"https://api.github.com/users/chrisduan/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/chrisduan/mychat","description":"","fork":false,"url":"https://api.github.com/repos/chrisduan/mychat","forks_url":"https://api.github.com/repos/chrisduan/mychat/forks","keys_url":"https://api.github.com/repos/chrisduan/mychat/keys{/key_id}","collaborators_url":"https://api.github.com/repos/chrisduan/mychat/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/chrisduan/mychat/teams","hooks_url":"https://api.github.com/repos/chrisduan/mychat/hooks","issue_events_url":"https://api.github.com/repos/chrisduan/mychat/issues/events{/number}","events_url":"https://api.github.com/repos/chrisduan/mychat/events","assignees_url":"https://api.github.com/repos/chrisduan/mychat/assignees{/user}","branches_url":"https://api.github.com/repos/chrisduan/mychat/branches{/branch}","tags_url":"https://api.github.com/repos/chrisduan/mychat/tags","blobs_url":"https://api.github.com/repos/chrisduan/mychat/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/chrisduan/mychat/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/chrisduan/mychat/git/refs{/sha}","trees_url":"https://api.github.com/repos/chrisduan/mychat/git/trees{/sha}","statuses_url":"https://api.github.com/repos/chrisduan/mychat/statuses/{sha}","languages_url":"https://api.github.com/repos/chrisduan/mychat/languages","stargazers_url":"https://api.github.com/repos/chrisduan/mychat/stargazers","contributors_url":"https://api.github.com/repos/chrisduan/mychat/contributors","subscribers_url":"https://api.github.com/repos/chrisduan/mychat/subscribers","subscription_url":"https://api.github.com/repos/chrisduan/mychat/subscription","commits_url":"https://api.github.com/repos/chrisduan/mychat/commits{/sha}","git_commits_url":"https://api.github.com/repos/chrisduan/mychat/git/commits{/sha}","comments_url":"https://api.github.com/repos/chrisduan/mychat/comments{/number}","issue_comment_url":"https://api.github.com/repos/chrisduan/mychat/issues/comments/{number}","contents_url":"https://api.github.com/repos/chrisduan/mychat/contents/{+path}","compare_url":"https://api.github.com/repos/chrisduan/mychat/compare/{base}...{head}","merges_url":"https://api.github.com/repos/chrisduan/mychat/merges","archive_url":"https://api.github.com/repos/chrisduan/mychat/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/chrisduan/mychat/downloads","issues_url":"https://api.github.com/repos/chrisduan/mychat/issues{/number}","pulls_url":"https://api.github.com/repos/chrisduan/mychat/pulls{/number}","milestones_url":"https://api.github.com/repos/chrisduan/mychat/milestones{/number}","notifications_url":"https://api.github.com/repos/chrisduan/mychat/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/chrisduan/mychat/labels{/name}","releases_url":"https://api.github.com/repos/chrisduan/mychat/releases{/id}","created_at":"2015-01-01T08:30:39Z","updated_at":"2015-01-01T12:57:51Z","pushed_at":"2015-01-01T15:01:18Z","git_url":"git://github.com/chrisduan/mychat.git","ssh_url":"git@github.com:chrisduan/mychat.git","clone_url":"https://github.com/chrisduan/mychat.git","svn_url":"https://github.com/chrisduan/mychat","homepage":null,"size":0,"stargazers_count":0,"watchers_count":0,"language":"Java","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master"}},"base":{"label":"chrisduan:master","ref":"master","sha":"06d276764e280d653c89ac60cc5378615559aef8","user":{"login":"chrisduan","id":2884455,"avatar_url":"https://avatars.githubusercontent.com/u/2884455?v=3","gravatar_id":"","url":"https://api.github.com/users/chrisduan","html_url":"https://github.com/chrisduan","followers_url":"https://api.github.com/users/chrisduan/followers","following_url":"https://api.github.com/users/chrisduan/following{/other_user}","gists_url":"https://api.github.com/users/chrisduan/gists{/gist_id}","starred_url":"https://api.github.com/users/chrisduan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/chrisduan/subscriptions","organizations_url":"https://api.github.com/users/chrisduan/orgs","repos_url":"https://api.github.com/users/chrisduan/repos","events_url":"https://api.github.com/users/chrisduan/events{/privacy}","received_events_url":"https://api.github.com/users/chrisduan/received_events","type":"User","site_admin":false},"repo":{"id":28683221,"name":"mychat","full_name":"chrisduan/mychat","owner":{"login":"chrisduan","id":2884455,"avatar_url":"https://avatars.githubusercontent.com/u/2884455?v=3","gravatar_id":"","url":"https://api.github.com/users/chrisduan","html_url":"https://github.com/chrisduan","followers_url":"https://api.github.com/users/chrisduan/followers","following_url":"https://api.github.com/users/chrisduan/following{/other_user}","gists_url":"https://api.github.com/users/chrisduan/gists{/gist_id}","starred_url":"https://api.github.com/users/chrisduan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/chrisduan/subscriptions","organizations_url":"https://api.github.com/users/chrisduan/orgs","repos_url":"https://api.github.com/users/chrisduan/repos","events_url":"https://api.github.com/users/chrisduan/events{/privacy}","received_events_url":"https://api.github.com/users/chrisduan/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/chrisduan/mychat","description":"","fork":false,"url":"https://api.github.com/repos/chrisduan/mychat","forks_url":"https://api.github.com/repos/chrisduan/mychat/forks","keys_url":"https://api.github.com/repos/chrisduan/mychat/keys{/key_id}","collaborators_url":"https://api.github.com/repos/chrisduan/mychat/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/chrisduan/mychat/teams","hooks_url":"https://api.github.com/repos/chrisduan/mychat/hooks","issue_events_url":"https://api.github.com/repos/chrisduan/mychat/issues/events{/number}","events_url":"https://api.github.com/repos/chrisduan/mychat/events","assignees_url":"https://api.github.com/repos/chrisduan/mychat/assignees{/user}","branches_url":"https://api.github.com/repos/chrisduan/mychat/branches{/branch}","tags_url":"https://api.github.com/repos/chrisduan/mychat/tags","blobs_url":"https://api.github.com/repos/chrisduan/mychat/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/chrisduan/mychat/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/chrisduan/mychat/git/refs{/sha}","trees_url":"https://api.github.com/repos/chrisduan/mychat/git/trees{/sha}","statuses_url":"https://api.github.com/repos/chrisduan/mychat/statuses/{sha}","languages_url":"https://api.github.com/repos/chrisduan/mychat/languages","stargazers_url":"https://api.github.com/repos/chrisduan/mychat/stargazers","contributors_url":"https://api.github.com/repos/chrisduan/mychat/contributors","subscribers_url":"https://api.github.com/repos/chrisduan/mychat/subscribers","subscription_url":"https://api.github.com/repos/chrisduan/mychat/subscription","commits_url":"https://api.github.com/repos/chrisduan/mychat/commits{/sha}","git_commits_url":"https://api.github.com/repos/chrisduan/mychat/git/commits{/sha}","comments_url":"https://api.github.com/repos/chrisduan/mychat/comments{/number}","issue_comment_url":"https://api.github.com/repos/chrisduan/mychat/issues/comments/{number}","contents_url":"https://api.github.com/repos/chrisduan/mychat/contents/{+path}","compare_url":"https://api.github.com/repos/chrisduan/mychat/compare/{base}...{head}","merges_url":"https://api.github.com/repos/chrisduan/mychat/merges","archive_url":"https://api.github.com/repos/chrisduan/mychat/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/chrisduan/mychat/downloads","issues_url":"https://api.github.com/repos/chrisduan/mychat/issues{/number}","pulls_url":"https://api.github.com/repos/chrisduan/mychat/pulls{/number}","milestones_url":"https://api.github.com/repos/chrisduan/mychat/milestones{/number}","notifications_url":"https://api.github.com/repos/chrisduan/mychat/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/chrisduan/mychat/labels{/name}","releases_url":"https://api.github.com/repos/chrisduan/mychat/releases{/id}","created_at":"2015-01-01T08:30:39Z","updated_at":"2015-01-01T12:57:51Z","pushed_at":"2015-01-01T15:01:18Z","git_url":"git://github.com/chrisduan/mychat.git","ssh_url":"git@github.com:chrisduan/mychat.git","clone_url":"https://github.com/chrisduan/mychat.git","svn_url":"https://github.com/chrisduan/mychat","homepage":null,"size":0,"stargazers_count":0,"watchers_count":0,"language":"Java","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/chrisduan/mychat/pulls/3"},"html":{"href":"https://github.com/chrisduan/mychat/pull/3"},"issue":{"href":"https://api.github.com/repos/chrisduan/mychat/issues/3"},"comments":{"href":"https://api.github.com/repos/chrisduan/mychat/issues/3/comments"},"review_comments":{"href":"https://api.github.com/repos/chrisduan/mychat/pulls/3/comments"},"review_comment":{"href":"https://api.github.com/repos/chrisduan/mychat/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/chrisduan/mychat/pulls/3/commits"},"statuses":{"href":"https://api.github.com/repos/chrisduan/mychat/statuses/016f0ee4b973069e79ef87e2248d8df2c7cc8cd8"}},"merged":true,"mergeable":null,"mergeable_state":"unknown","merged_by":{"login":"chrisduan","id":2884455,"avatar_url":"https://avatars.githubusercontent.com/u/2884455?v=3","gravatar_id":"","url":"https://api.github.com/users/chrisduan","html_url":"https://github.com/chrisduan","followers_url":"https://api.github.com/users/chrisduan/followers","following_url":"https://api.github.com/users/chrisduan/following{/other_user}","gists_url":"https://api.github.com/users/chrisduan/gists{/gist_id}","starred_url":"https://api.github.com/users/chrisduan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/chrisduan/subscriptions","organizations_url":"https://api.github.com/users/chrisduan/orgs","repos_url":"https://api.github.com/users/chrisduan/repos","events_url":"https://api.github.com/users/chrisduan/events{/privacy}","received_events_url":"https://api.github.com/users/chrisduan/received_events","type":"User","site_admin":false},"comments":0,"review_comments":0,"commits":1,"additions":7,"deletions":1,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:01:18Z"}
,{"id":"2489651692","type":"PushEvent","actor":{"id":2884455,"login":"chrisduan","gravatar_id":"","url":"https://api.github.com/users/chrisduan","avatar_url":"https://avatars.githubusercontent.com/u/2884455?"},"repo":{"id":28683221,"name":"chrisduan/mychat","url":"https://api.github.com/repos/chrisduan/mychat"},"payload":{"push_id":536864275,"size":2,"distinct_size":1,"ref":"refs/heads/master","head":"c83ea67f2ad277a0f2681f29f7031290474530ed","before":"06d276764e280d653c89ac60cc5378615559aef8","commits":[{"sha":"016f0ee4b973069e79ef87e2248d8df2c7cc8cd8","author":{"email":"9e33b72f201b29a130675473741fc0fd66e1811e@ericsson.com","name":"UDM/CBC UPG"},"message":"modify README.md,log develop plan","distinct":false,"url":"https://api.github.com/repos/chrisduan/mychat/commits/016f0ee4b973069e79ef87e2248d8df2c7cc8cd8"},{"sha":"c83ea67f2ad277a0f2681f29f7031290474530ed","author":{"email":"eda3851d811821b2227c5e552d0c38282607d63d@126.com","name":"chrisduan"},"message":"Merge pull request #3 from chrisduan/task\n\nmodify README.md,log develop plan","distinct":true,"url":"https://api.github.com/repos/chrisduan/mychat/commits/c83ea67f2ad277a0f2681f29f7031290474530ed"}]},"public":true,"created_at":"2015-01-01T15:01:18Z"}
,{"id":"2489651693","type":"IssueCommentEvent","actor":{"id":1909317,"login":"Woseseltops","gravatar_id":"","url":"https://api.github.com/users/Woseseltops","avatar_url":"https://avatars.githubusercontent.com/u/1909317?"},"repo":{"id":28224290,"name":"Woseseltops/signbank","url":"https://api.github.com/repos/Woseseltops/signbank"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/Woseseltops/signbank/issues/8","labels_url":"https://api.github.com/repos/Woseseltops/signbank/issues/8/labels{/name}","comments_url":"https://api.github.com/repos/Woseseltops/signbank/issues/8/comments","events_url":"https://api.github.com/repos/Woseseltops/signbank/issues/8/events","html_url":"https://github.com/Woseseltops/signbank/issues/8","id":52469838,"number":8,"title":"The field choices should be editable from the Django admin","user":{"login":"Woseseltops","id":1909317,"avatar_url":"https://avatars.githubusercontent.com/u/1909317?v=3","gravatar_id":"","url":"https://api.github.com/users/Woseseltops","html_url":"https://github.com/Woseseltops","followers_url":"https://api.github.com/users/Woseseltops/followers","following_url":"https://api.github.com/users/Woseseltops/following{/other_user}","gists_url":"https://api.github.com/users/Woseseltops/gists{/gist_id}","starred_url":"https://api.github.com/users/Woseseltops/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Woseseltops/subscriptions","organizations_url":"https://api.github.com/users/Woseseltops/orgs","repos_url":"https://api.github.com/users/Woseseltops/repos","events_url":"https://api.github.com/users/Woseseltops/events{/privacy}","received_events_url":"https://api.github.com/users/Woseseltops/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/Woseseltops/signbank/labels/enhancement","name":"enhancement","color":"84b6eb"}],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2014-12-19T10:45:11Z","updated_at":"2015-01-01T15:01:18Z","closed_at":null,"body":""},"comment":{"url":"https://api.github.com/repos/Woseseltops/signbank/issues/comments/68488519","html_url":"https://github.com/Woseseltops/signbank/issues/8#issuecomment-68488519","issue_url":"https://api.github.com/repos/Woseseltops/signbank/issues/8","id":68488519,"user":{"login":"Woseseltops","id":1909317,"avatar_url":"https://avatars.githubusercontent.com/u/1909317?v=3","gravatar_id":"","url":"https://api.github.com/users/Woseseltops","html_url":"https://github.com/Woseseltops","followers_url":"https://api.github.com/users/Woseseltops/followers","following_url":"https://api.github.com/users/Woseseltops/following{/other_user}","gists_url":"https://api.github.com/users/Woseseltops/gists{/gist_id}","starred_url":"https://api.github.com/users/Woseseltops/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Woseseltops/subscriptions","organizations_url":"https://api.github.com/users/Woseseltops/orgs","repos_url":"https://api.github.com/users/Woseseltops/repos","events_url":"https://api.github.com/users/Woseseltops/events{/privacy}","received_events_url":"https://api.github.com/users/Woseseltops/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:01:18Z","updated_at":"2015-01-01T15:01:18Z","body":"Related to #7 "}},"public":true,"created_at":"2015-01-01T15:01:18Z"}
,{"id":"2489651697","type":"CreateEvent","actor":{"id":1214951,"login":"shahzad-latif","gravatar_id":"","url":"https://api.github.com/users/shahzad-latif","avatar_url":"https://avatars.githubusercontent.com/u/1214951?"},"repo":{"id":28688619,"name":"shahzad-latif/testrepo","url":"https://api.github.com/repos/shahzad-latif/testrepo"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"Test repo","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:01:18Z"}
,{"id":"2489651703","type":"ForkEvent","actor":{"id":3161587,"login":"mmdanggg2","gravatar_id":"","url":"https://api.github.com/users/mmdanggg2","avatar_url":"https://avatars.githubusercontent.com/u/3161587?"},"repo":{"id":8632474,"name":"jadar/DeveloperCapes","url":"https://api.github.com/repos/jadar/DeveloperCapes"},"payload":{"forkee":{"id":28688620,"name":"DeveloperCapes","full_name":"mmdanggg2/DeveloperCapes","owner":{"login":"mmdanggg2","id":3161587,"avatar_url":"https://avatars.githubusercontent.com/u/3161587?v=3","gravatar_id":"","url":"https://api.github.com/users/mmdanggg2","html_url":"https://github.com/mmdanggg2","followers_url":"https://api.github.com/users/mmdanggg2/followers","following_url":"https://api.github.com/users/mmdanggg2/following{/other_user}","gists_url":"https://api.github.com/users/mmdanggg2/gists{/gist_id}","starred_url":"https://api.github.com/users/mmdanggg2/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mmdanggg2/subscriptions","organizations_url":"https://api.github.com/users/mmdanggg2/orgs","repos_url":"https://api.github.com/users/mmdanggg2/repos","events_url":"https://api.github.com/users/mmdanggg2/events{/privacy}","received_events_url":"https://api.github.com/users/mmdanggg2/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/mmdanggg2/DeveloperCapes","description":"A Minecraft modding library for adding Donor/Tester only capes!","fork":true,"url":"https://api.github.com/repos/mmdanggg2/DeveloperCapes","forks_url":"https://api.github.com/repos/mmdanggg2/DeveloperCapes/forks","keys_url":"https://api.github.com/repos/mmdanggg2/DeveloperCapes/keys{/key_id}","collaborators_url":"https://api.github.com/repos/mmdanggg2/DeveloperCapes/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/mmdanggg2/DeveloperCapes/teams","hooks_url":"https://api.github.com/repos/mmdanggg2/DeveloperCapes/hooks","issue_events_url":"https://api.github.com/repos/mmdanggg2/DeveloperCapes/issues/events{/number}","events_url":"https://api.github.com/repos/mmdanggg2/DeveloperCapes/events","assignees_url":"https://api.github.com/repos/mmdanggg2/DeveloperCapes/assignees{/user}","branches_url":"https://api.github.com/repos/mmdanggg2/DeveloperCapes/branches{/branch}","tags_url":"https://api.github.com/repos/mmdanggg2/DeveloperCapes/tags","blobs_url":"https://api.github.com/repos/mmdanggg2/DeveloperCapes/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/mmdanggg2/DeveloperCapes/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/mmdanggg2/DeveloperCapes/git/refs{/sha}","trees_url":"https://api.github.com/repos/mmdanggg2/DeveloperCapes/git/trees{/sha}","statuses_url":"https://api.github.com/repos/mmdanggg2/DeveloperCapes/statuses/{sha}","languages_url":"https://api.github.com/repos/mmdanggg2/DeveloperCapes/languages","stargazers_url":"https://api.github.com/repos/mmdanggg2/DeveloperCapes/stargazers","contributors_url":"https://api.github.com/repos/mmdanggg2/DeveloperCapes/contributors","subscribers_url":"https://api.github.com/repos/mmdanggg2/DeveloperCapes/subscribers","subscription_url":"https://api.github.com/repos/mmdanggg2/DeveloperCapes/subscription","commits_url":"https://api.github.com/repos/mmdanggg2/DeveloperCapes/commits{/sha}","git_commits_url":"https://api.github.com/repos/mmdanggg2/DeveloperCapes/git/commits{/sha}","comments_url":"https://api.github.com/repos/mmdanggg2/DeveloperCapes/comments{/number}","issue_comment_url":"https://api.github.com/repos/mmdanggg2/DeveloperCapes/issues/comments/{number}","contents_url":"https://api.github.com/repos/mmdanggg2/DeveloperCapes/contents/{+path}","compare_url":"https://api.github.com/repos/mmdanggg2/DeveloperCapes/compare/{base}...{head}","merges_url":"https://api.github.com/repos/mmdanggg2/DeveloperCapes/merges","archive_url":"https://api.github.com/repos/mmdanggg2/DeveloperCapes/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/mmdanggg2/DeveloperCapes/downloads","issues_url":"https://api.github.com/repos/mmdanggg2/DeveloperCapes/issues{/number}","pulls_url":"https://api.github.com/repos/mmdanggg2/DeveloperCapes/pulls{/number}","milestones_url":"https://api.github.com/repos/mmdanggg2/DeveloperCapes/milestones{/number}","notifications_url":"https://api.github.com/repos/mmdanggg2/DeveloperCapes/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/mmdanggg2/DeveloperCapes/labels{/name}","releases_url":"https://api.github.com/repos/mmdanggg2/DeveloperCapes/releases{/id}","created_at":"2015-01-01T15:01:19Z","updated_at":"2014-11-24T05:38:03Z","pushed_at":"2014-11-11T15:49:00Z","git_url":"git://github.com/mmdanggg2/DeveloperCapes.git","ssh_url":"git@github.com:mmdanggg2/DeveloperCapes.git","clone_url":"https://github.com/mmdanggg2/DeveloperCapes.git","svn_url":"https://github.com/mmdanggg2/DeveloperCapes","homepage":"","size":1106,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":false,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master","public":true}},"public":true,"created_at":"2015-01-01T15:01:20Z"}
,{"id":"2489651708","type":"PushEvent","actor":{"id":399120,"login":"andreastt","gravatar_id":"","url":"https://api.github.com/users/andreastt","avatar_url":"https://avatars.githubusercontent.com/u/399120?"},"repo":{"id":10590213,"name":"SeleniumHQ/docs","url":"https://api.github.com/repos/SeleniumHQ/docs"},"payload":{"push_id":536864279,"size":2,"distinct_size":2,"ref":"refs/heads/gh-pages","head":"99ca91e46acb76316e16b294d69ecd9d1c8787e2","before":"a54522998afc96d8595a8c5724c0cd77a4cf734e","commits":[{"sha":"91b9386a00c6830aec65dc2cd6514b0b07f78890","author":{"email":"dab4293f93c7233f547c2dcfbe48efb5ac3ee2f4@mozilla.com","name":"Andreas Tolfsen"},"message":"Use event listeners","distinct":true,"url":"https://api.github.com/repos/SeleniumHQ/docs/commits/91b9386a00c6830aec65dc2cd6514b0b07f78890"},{"sha":"99ca91e46acb76316e16b294d69ecd9d1c8787e2","author":{"email":"dab4293f93c7233f547c2dcfbe48efb5ac3ee2f4@mozilla.com","name":"Andreas Tolfsen"},"message":"Track current header in ToC","distinct":true,"url":"https://api.github.com/repos/SeleniumHQ/docs/commits/99ca91e46acb76316e16b294d69ecd9d1c8787e2"}]},"public":true,"created_at":"2015-01-01T15:01:20Z","org":{"id":983927,"login":"SeleniumHQ","gravatar_id":"","url":"https://api.github.com/orgs/SeleniumHQ","avatar_url":"https://avatars.githubusercontent.com/u/983927?"}}
,{"id":"2489651710","type":"PushEvent","actor":{"id":3495129,"login":"sundaymtn","gravatar_id":"","url":"https://api.github.com/users/sundaymtn","avatar_url":"https://avatars.githubusercontent.com/u/3495129?"},"repo":{"id":24147122,"name":"sundaymtn/waterline","url":"https://api.github.com/repos/sundaymtn/waterline"},"payload":{"push_id":536864281,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"928509483a908b0835930dc829d6972d688b99a2","before":"2a2ec35bfefb9341b1df2f213aad1dac804bc2ea","commits":[{"sha":"928509483a908b0835930dc829d6972d688b99a2","author":{"email":"7fbc091194a9488bfb16868527a7c3a8ba469dba@gmail.com","name":"Seth Carter"},"message":"[skip ci] updated waterline data","distinct":true,"url":"https://api.github.com/repos/sundaymtn/waterline/commits/928509483a908b0835930dc829d6972d688b99a2"}]},"public":true,"created_at":"2015-01-01T15:01:20Z"}
,{"id":"2489651711","type":"PullRequestEvent","actor":{"id":2664774,"login":"wheam","gravatar_id":"","url":"https://api.github.com/users/wheam","avatar_url":"https://avatars.githubusercontent.com/u/2664774?"},"repo":{"id":2281775,"name":"marcuswestin/WebViewJavascriptBridge","url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge"},"payload":{"action":"opened","number":117,"pull_request":{"url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/pulls/117","id":26743780,"html_url":"https://github.com/marcuswestin/WebViewJavascriptBridge/pull/117","diff_url":"https://github.com/marcuswestin/WebViewJavascriptBridge/pull/117.diff","patch_url":"https://github.com/marcuswestin/WebViewJavascriptBridge/pull/117.patch","issue_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/issues/117","number":117,"state":"open","locked":false,"title":"call Handler.handler() in ui thread and double escape messageJSON to javascript","user":{"login":"wheam","id":2664774,"avatar_url":"https://avatars.githubusercontent.com/u/2664774?v=3","gravatar_id":"","url":"https://api.github.com/users/wheam","html_url":"https://github.com/wheam","followers_url":"https://api.github.com/users/wheam/followers","following_url":"https://api.github.com/users/wheam/following{/other_user}","gists_url":"https://api.github.com/users/wheam/gists{/gist_id}","starred_url":"https://api.github.com/users/wheam/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/wheam/subscriptions","organizations_url":"https://api.github.com/users/wheam/orgs","repos_url":"https://api.github.com/users/wheam/repos","events_url":"https://api.github.com/users/wheam/events{/privacy}","received_events_url":"https://api.github.com/users/wheam/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:01:20Z","updated_at":"2015-01-01T15:01:20Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/pulls/117/commits","review_comments_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/pulls/117/comments","review_comment_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/pulls/comments/{number}","comments_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/issues/117/comments","statuses_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/statuses/4816d6a8100dc08e25b7d448c851174152eff633","head":{"label":"fangj:master","ref":"master","sha":"4816d6a8100dc08e25b7d448c851174152eff633","user":{"login":"fangj","id":2791964,"avatar_url":"https://avatars.githubusercontent.com/u/2791964?v=3","gravatar_id":"","url":"https://api.github.com/users/fangj","html_url":"https://github.com/fangj","followers_url":"https://api.github.com/users/fangj/followers","following_url":"https://api.github.com/users/fangj/following{/other_user}","gists_url":"https://api.github.com/users/fangj/gists{/gist_id}","starred_url":"https://api.github.com/users/fangj/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fangj/subscriptions","organizations_url":"https://api.github.com/users/fangj/orgs","repos_url":"https://api.github.com/users/fangj/repos","events_url":"https://api.github.com/users/fangj/events{/privacy}","received_events_url":"https://api.github.com/users/fangj/received_events","type":"User","site_admin":false},"repo":{"id":12103692,"name":"WebViewJavascriptBridge","full_name":"fangj/WebViewJavascriptBridge","owner":{"login":"fangj","id":2791964,"avatar_url":"https://avatars.githubusercontent.com/u/2791964?v=3","gravatar_id":"","url":"https://api.github.com/users/fangj","html_url":"https://github.com/fangj","followers_url":"https://api.github.com/users/fangj/followers","following_url":"https://api.github.com/users/fangj/following{/other_user}","gists_url":"https://api.github.com/users/fangj/gists{/gist_id}","starred_url":"https://api.github.com/users/fangj/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fangj/subscriptions","organizations_url":"https://api.github.com/users/fangj/orgs","repos_url":"https://api.github.com/users/fangj/repos","events_url":"https://api.github.com/users/fangj/events{/privacy}","received_events_url":"https://api.github.com/users/fangj/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/fangj/WebViewJavascriptBridge","description":"An cross-platform bridge for sending messages between Obj-C/Java/Javascript and JavaScript in UIWebViews/WebViews","fork":true,"url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge","forks_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/forks","keys_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/keys{/key_id}","collaborators_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/teams","hooks_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/hooks","issue_events_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/issues/events{/number}","events_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/events","assignees_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/assignees{/user}","branches_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/branches{/branch}","tags_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/tags","blobs_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/git/refs{/sha}","trees_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/git/trees{/sha}","statuses_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/statuses/{sha}","languages_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/languages","stargazers_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/stargazers","contributors_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/contributors","subscribers_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/subscribers","subscription_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/subscription","commits_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/commits{/sha}","git_commits_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/git/commits{/sha}","comments_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/comments{/number}","issue_comment_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/issues/comments/{number}","contents_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/contents/{+path}","compare_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/compare/{base}...{head}","merges_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/merges","archive_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/downloads","issues_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/issues{/number}","pulls_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/pulls{/number}","milestones_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/milestones{/number}","notifications_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/labels{/name}","releases_url":"https://api.github.com/repos/fangj/WebViewJavascriptBridge/releases{/id}","created_at":"2013-08-14T08:19:04Z","updated_at":"2014-12-23T15:58:50Z","pushed_at":"2014-03-27T09:05:49Z","git_url":"git://github.com/fangj/WebViewJavascriptBridge.git","ssh_url":"git@github.com:fangj/WebViewJavascriptBridge.git","clone_url":"https://github.com/fangj/WebViewJavascriptBridge.git","svn_url":"https://github.com/fangj/WebViewJavascriptBridge","homepage":"","size":763,"stargazers_count":11,"watchers_count":11,"language":"Objective-C","has_issues":false,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":2,"mirror_url":null,"open_issues_count":0,"forks":2,"open_issues":0,"watchers":11,"default_branch":"master"}},"base":{"label":"marcuswestin:master","ref":"master","sha":"52b91344dec20ac66ed4cd9275bde2245eab88bb","user":{"login":"marcuswestin","id":131967,"avatar_url":"https://avatars.githubusercontent.com/u/131967?v=3","gravatar_id":"","url":"https://api.github.com/users/marcuswestin","html_url":"https://github.com/marcuswestin","followers_url":"https://api.github.com/users/marcuswestin/followers","following_url":"https://api.github.com/users/marcuswestin/following{/other_user}","gists_url":"https://api.github.com/users/marcuswestin/gists{/gist_id}","starred_url":"https://api.github.com/users/marcuswestin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/marcuswestin/subscriptions","organizations_url":"https://api.github.com/users/marcuswestin/orgs","repos_url":"https://api.github.com/users/marcuswestin/repos","events_url":"https://api.github.com/users/marcuswestin/events{/privacy}","received_events_url":"https://api.github.com/users/marcuswestin/received_events","type":"User","site_admin":false},"repo":{"id":2281775,"name":"WebViewJavascriptBridge","full_name":"marcuswestin/WebViewJavascriptBridge","owner":{"login":"marcuswestin","id":131967,"avatar_url":"https://avatars.githubusercontent.com/u/131967?v=3","gravatar_id":"","url":"https://api.github.com/users/marcuswestin","html_url":"https://github.com/marcuswestin","followers_url":"https://api.github.com/users/marcuswestin/followers","following_url":"https://api.github.com/users/marcuswestin/following{/other_user}","gists_url":"https://api.github.com/users/marcuswestin/gists{/gist_id}","starred_url":"https://api.github.com/users/marcuswestin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/marcuswestin/subscriptions","organizations_url":"https://api.github.com/users/marcuswestin/orgs","repos_url":"https://api.github.com/users/marcuswestin/repos","events_url":"https://api.github.com/users/marcuswestin/events{/privacy}","received_events_url":"https://api.github.com/users/marcuswestin/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/marcuswestin/WebViewJavascriptBridge","description":"An iOS/OSX bridge for sending messages between Obj-C and JavaScript in UIWebViews/WebViews","fork":false,"url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge","forks_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/forks","keys_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/keys{/key_id}","collaborators_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/teams","hooks_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/hooks","issue_events_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/issues/events{/number}","events_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/events","assignees_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/assignees{/user}","branches_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/branches{/branch}","tags_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/tags","blobs_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/git/refs{/sha}","trees_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/git/trees{/sha}","statuses_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/statuses/{sha}","languages_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/languages","stargazers_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/stargazers","contributors_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/contributors","subscribers_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/subscribers","subscription_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/subscription","commits_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/commits{/sha}","git_commits_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/git/commits{/sha}","comments_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/comments{/number}","issue_comment_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/issues/comments/{number}","contents_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/contents/{+path}","compare_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/compare/{base}...{head}","merges_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/merges","archive_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/downloads","issues_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/issues{/number}","pulls_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/pulls{/number}","milestones_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/milestones{/number}","notifications_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/labels{/name}","releases_url":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/releases{/id}","created_at":"2011-08-28T02:25:27Z","updated_at":"2015-01-01T04:00:35Z","pushed_at":"2014-11-05T17:26:00Z","git_url":"git://github.com/marcuswestin/WebViewJavascriptBridge.git","ssh_url":"git@github.com:marcuswestin/WebViewJavascriptBridge.git","clone_url":"https://github.com/marcuswestin/WebViewJavascriptBridge.git","svn_url":"https://github.com/marcuswestin/WebViewJavascriptBridge","homepage":"http://marcuswest.in","size":1288,"stargazers_count":2099,"watchers_count":2099,"language":"Objective-C","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":448,"mirror_url":null,"open_issues_count":12,"forks":448,"open_issues":12,"watchers":2099,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/pulls/117"},"html":{"href":"https://github.com/marcuswestin/WebViewJavascriptBridge/pull/117"},"issue":{"href":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/issues/117"},"comments":{"href":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/issues/117/comments"},"review_comments":{"href":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/pulls/117/comments"},"review_comment":{"href":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/pulls/117/commits"},"statuses":{"href":"https://api.github.com/repos/marcuswestin/WebViewJavascriptBridge/statuses/4816d6a8100dc08e25b7d448c851174152eff633"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":32,"additions":16320,"deletions":167,"changed_files":99}},"public":true,"created_at":"2015-01-01T15:01:20Z"}
,{"id":"2489651716","type":"PushEvent","actor":{"id":8203176,"login":"fermino","gravatar_id":"","url":"https://api.github.com/users/fermino","avatar_url":"https://avatars.githubusercontent.com/u/8203176?"},"repo":{"id":25943021,"name":"fermino/WhatsBot","url":"https://api.github.com/repos/fermino/WhatsBot"},"payload":{"push_id":536864282,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"2df1c99759a842bb5895ee9103b07010ba7eccda","before":"120bfbf0e1268191ef70d2e19b71884b09353e48","commits":[{"sha":"2df1c99759a842bb5895ee9103b07010ba7eccda","author":{"email":"4e166e1d3b38307f39b02b98a5595c2f4fa90e0b@gmail.com","name":"Fermín Olaiz"},"message":"Updating WhatsBot (Arduino)\n\nCommand end char: 0x10 (New Line).\nCommands:\n* pmi <pin>: pinMode(Pin, INPUT);\n* pmo <pin>: pinMode(Pin, OUTPUT);\n* dwh <pin>: digitalWrite(Pin, HIGH);\n* dwl <pin>: digitalWrite(Pin, LOW);","distinct":true,"url":"https://api.github.com/repos/fermino/WhatsBot/commits/2df1c99759a842bb5895ee9103b07010ba7eccda"}]},"public":true,"created_at":"2015-01-01T15:01:22Z"}
,{"id":"2489651718","type":"PushEvent","actor":{"id":10357835,"login":"mevlan","gravatar_id":"","url":"https://api.github.com/users/mevlan","avatar_url":"https://avatars.githubusercontent.com/u/10357835?"},"repo":{"id":28668460,"name":"mevlan/script","url":"https://api.github.com/repos/mevlan/script"},"payload":{"push_id":536864283,"size":1,"distinct_size":1,"ref":"refs/heads/final","head":"5cd1712df72a79bccdebfe073d82224404871fac","before":"fecf568375c53fd0bf03eb4e81c821214077f41c","commits":[{"sha":"5cd1712df72a79bccdebfe073d82224404871fac","author":{"email":"3fe26ceefc6136597d18aa4b5f569dcddad007e2@mevlans-MacBook-Pro.local","name":"mevlan"},"message":"white space removed","distinct":true,"url":"https://api.github.com/repos/mevlan/script/commits/5cd1712df72a79bccdebfe073d82224404871fac"}]},"public":true,"created_at":"2015-01-01T15:01:22Z"}
,{"id":"2489651721","type":"CreateEvent","actor":{"id":10364620,"login":"quixing","gravatar_id":"","url":"https://api.github.com/users/quixing","avatar_url":"https://avatars.githubusercontent.com/u/10364620?"},"repo":{"id":28688601,"name":"quixing/help-me","url":"https://api.github.com/repos/quixing/help-me"},"payload":{"ref":"readme-edits","ref_type":"branch","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:01:23Z"}
,{"id":"2489651722","type":"PushEvent","actor":{"id":9201970,"login":"qdm","gravatar_id":"","url":"https://api.github.com/users/qdm","avatar_url":"https://avatars.githubusercontent.com/u/9201970?"},"repo":{"id":25173910,"name":"qdm/qdm.github.io","url":"https://api.github.com/repos/qdm/qdm.github.io"},"payload":{"push_id":536864285,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"43b8b2d09a03eab6e0d1f27f7c8c645b72eb5391","before":"03be73575aca370065b6ebd7da23a860e0eff070","commits":[{"sha":"43b8b2d09a03eab6e0d1f27f7c8c645b72eb5391","author":{"email":"de163e90d3aeef9f404d1de71c48e234a211e3c3@gmail.com","name":"KT"},"message":"Update","distinct":true,"url":"https://api.github.com/repos/qdm/qdm.github.io/commits/43b8b2d09a03eab6e0d1f27f7c8c645b72eb5391"}]},"public":true,"created_at":"2015-01-01T15:01:23Z"}
,{"id":"2489651724","type":"PushEvent","actor":{"id":7281281,"login":"poliander","gravatar_id":"","url":"https://api.github.com/users/poliander","avatar_url":"https://avatars.githubusercontent.com/u/7281281?"},"repo":{"id":25121438,"name":"poliander/skeleton-sdcc-cpc","url":"https://api.github.com/repos/poliander/skeleton-sdcc-cpc"},"payload":{"push_id":536864286,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"4d5cf85780b15e3099ffc09f46a7bd07dd7358e1","before":"9704666412e4d03a1def4dba338bad30435358e4","commits":[{"sha":"4d5cf85780b15e3099ffc09f46a7bd07dd7358e1","author":{"email":"414ad89ad538463e0ddf73118b04c3f329e260aa@gmx.net","name":"poliander"},"message":"added default hardware I/O port definitions to cpc.h","distinct":true,"url":"https://api.github.com/repos/poliander/skeleton-sdcc-cpc/commits/4d5cf85780b15e3099ffc09f46a7bd07dd7358e1"}]},"public":true,"created_at":"2015-01-01T15:01:23Z"}
,{"id":"2489651728","type":"PushEvent","actor":{"id":463790,"login":"cmoulliard","gravatar_id":"","url":"https://api.github.com/users/cmoulliard","avatar_url":"https://avatars.githubusercontent.com/u/463790?"},"repo":{"id":23330642,"name":"astefanutti/camel-cdi","url":"https://api.github.com/repos/astefanutti/camel-cdi"},"payload":{"push_id":536864289,"size":1,"distinct_size":1,"ref":"refs/heads/quickstart-persistence","head":"085dbaa059eccfd622f9e6145eef81d34e97f3ac","before":"573f9e9d183eabe816f329764c2a5399b193da64","commits":[{"sha":"085dbaa059eccfd622f9e6145eef81d34e97f3ac","author":{"email":"5d68aadc7b86f4ec46829bcee9c27fce51e3abf5@gmail.com","name":"Charles Moulliard"},"message":"Investigate issues: injection point does not work with Application scoped excepted if we set an extension","distinct":true,"url":"https://api.github.com/repos/astefanutti/camel-cdi/commits/085dbaa059eccfd622f9e6145eef81d34e97f3ac"}]},"public":true,"created_at":"2015-01-01T15:01:23Z"}
,{"id":"2489651730","type":"PushEvent","actor":{"id":20723,"login":"audreyt","gravatar_id":"","url":"https://api.github.com/users/audreyt","avatar_url":"https://avatars.githubusercontent.com/u/20723?"},"repo":{"id":10243453,"name":"g0v/moedict-app","url":"https://api.github.com/repos/g0v/moedict-app"},"payload":{"push_id":536864290,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"f149cc5aac0636de10ea462b9db6bc4204c628a3","before":"a19cfb09b7fb3c7aea88b3d20554ad4ee0c700e0","commits":[{"sha":"f149cc5aac0636de10ea462b9db6bc4204c628a3","author":{"email":"809c9e962e12c9bd1840bfdfb8eee4210a983ced@audreyt.org","name":"Audrey Tang"},"message":"* 2014-12-15 upstream update.","distinct":true,"url":"https://api.github.com/repos/g0v/moedict-app/commits/f149cc5aac0636de10ea462b9db6bc4204c628a3"}]},"public":true,"created_at":"2015-01-01T15:01:23Z","org":{"id":2668086,"login":"g0v","gravatar_id":"","url":"https://api.github.com/orgs/g0v","avatar_url":"https://avatars.githubusercontent.com/u/2668086?"}}
,{"id":"2489651732","type":"PushEvent","actor":{"id":4444926,"login":"freeweibo","gravatar_id":"","url":"https://api.github.com/users/freeweibo","avatar_url":"https://avatars.githubusercontent.com/u/4444926?"},"repo":{"id":10095561,"name":"freeweibo/top","url":"https://api.github.com/repos/freeweibo/top"},"payload":{"push_id":536864292,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"c72e57cea29009c578dfaddec03a593f04649c7a","before":"6979c2887ded9d3b8aa41a74a7f7d502b588abbd","commits":[{"sha":"c72e57cea29009c578dfaddec03a593f04649c7a","author":{"email":"24bf68e341ce0fbd9259a5d51feed79682ea4eba@ec2-us-web2.(none)","name":"Ubuntu"},"message":"auto","distinct":true,"url":"https://api.github.com/repos/freeweibo/top/commits/c72e57cea29009c578dfaddec03a593f04649c7a"}]},"public":true,"created_at":"2015-01-01T15:01:23Z"}
,{"id":"2489651734","type":"CreateEvent","actor":{"id":523463,"login":"suprafly","gravatar_id":"","url":"https://api.github.com/users/suprafly","avatar_url":"https://avatars.githubusercontent.com/u/523463?"},"repo":{"id":28688587,"name":"suprafly/knodes","url":"https://api.github.com/repos/suprafly/knodes"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"Knowledge Nodes app.","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:01:24Z"}
,{"id":"2489651737","type":"CreateEvent","actor":{"id":7732667,"login":"lihechao","gravatar_id":"","url":"https://api.github.com/users/lihechao","avatar_url":"https://avatars.githubusercontent.com/u/7732667?"},"repo":{"id":28688622,"name":"lihechao/pl0Compiler","url":"https://api.github.com/repos/lihechao/pl0Compiler"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"高级PL0编译器","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:01:24Z"}
,{"id":"2489651742","type":"CommitCommentEvent","actor":{"id":487050,"login":"shlevy","gravatar_id":"","url":"https://api.github.com/users/shlevy","avatar_url":"https://avatars.githubusercontent.com/u/487050?"},"repo":{"id":8969224,"name":"peti/nixpkgs","url":"https://api.github.com/repos/peti/nixpkgs"},"payload":{"comment":{"url":"https://api.github.com/repos/peti/nixpkgs/comments/9132422","html_url":"https://github.com/peti/nixpkgs/commit/12c51681d322e02b4f3b9b0e77eda261720c8073#commitcomment-9132422","id":9132422,"user":{"login":"shlevy","id":487050,"avatar_url":"https://avatars.githubusercontent.com/u/487050?v=3","gravatar_id":"","url":"https://api.github.com/users/shlevy","html_url":"https://github.com/shlevy","followers_url":"https://api.github.com/users/shlevy/followers","following_url":"https://api.github.com/users/shlevy/following{/other_user}","gists_url":"https://api.github.com/users/shlevy/gists{/gist_id}","starred_url":"https://api.github.com/users/shlevy/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/shlevy/subscriptions","organizations_url":"https://api.github.com/users/shlevy/orgs","repos_url":"https://api.github.com/users/shlevy/repos","events_url":"https://api.github.com/users/shlevy/events{/privacy}","received_events_url":"https://api.github.com/users/shlevy/received_events","type":"User","site_admin":false},"position":null,"line":null,"path":"","commit_id":"12c51681d322e02b4f3b9b0e77eda261720c8073","created_at":"2015-01-01T15:01:25Z","updated_at":"2015-01-01T15:01:25Z","body":"@vcunat link to a failed build log?"}},"public":true,"created_at":"2015-01-01T15:01:25Z"}
,{"id":"2489651744","type":"WatchEvent","actor":{"id":2070932,"login":"0xBADC0FFEE","gravatar_id":"","url":"https://api.github.com/users/0xBADC0FFEE","avatar_url":"https://avatars.githubusercontent.com/u/2070932?"},"repo":{"id":21438999,"name":"jeffbyrnes/alfred-pkgman-workflow","url":"https://api.github.com/repos/jeffbyrnes/alfred-pkgman-workflow"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:01:25Z"}
,{"id":"2489651748","type":"CreateEvent","actor":{"id":5804922,"login":"taukir4u","gravatar_id":"","url":"https://api.github.com/users/taukir4u","avatar_url":"https://avatars.githubusercontent.com/u/5804922?"},"repo":{"id":28688623,"name":"taukir4u/ResultUIApp","url":"https://api.github.com/repos/taukir4u/ResultUIApp"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:01:26Z"}
,{"id":"2489651752","type":"PushEvent","actor":{"id":9381532,"login":"vatsaaa","gravatar_id":"","url":"https://api.github.com/users/vatsaaa","avatar_url":"https://avatars.githubusercontent.com/u/9381532?"},"repo":{"id":28673152,"name":"vatsaaa/mycodesnips","url":"https://api.github.com/repos/vatsaaa/mycodesnips"},"payload":{"push_id":536864298,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"6c8437f7edc4665c70bcdd78749c94d03deb57f6","before":"d70741fcde9b233d93f25b3ece739774fe414280","commits":[{"sha":"6c8437f7edc4665c70bcdd78749c94d03deb57f6","author":{"email":"be51eeb01ab0ddac52571dd736dd0fd5d13a6a37@gmail.com","name":"Gudakesh Ankur Vatsa"},"message":"Delete IPalindrome.java","distinct":true,"url":"https://api.github.com/repos/vatsaaa/mycodesnips/commits/6c8437f7edc4665c70bcdd78749c94d03deb57f6"}]},"public":true,"created_at":"2015-01-01T15:01:27Z"}
,{"id":"2489651756","type":"PushEvent","actor":{"id":993322,"login":"qiangxue","gravatar_id":"","url":"https://api.github.com/users/qiangxue","avatar_url":"https://avatars.githubusercontent.com/u/993322?"},"repo":{"id":14080265,"name":"yiisoft/yii2-bootstrap","url":"https://api.github.com/repos/yiisoft/yii2-bootstrap"},"payload":{"push_id":536864301,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"43b808a9d799d9b08dca5790722d1b51196e7e25","before":"1b5ddfc0a5faa907b23add91bf8691fb041492f4","commits":[{"sha":"43b808a9d799d9b08dca5790722d1b51196e7e25","author":{"email":"4d681006a0a61cdec5c496212b1ec8571dd0b4c7@gmail.com","name":"Qiang Xue"},"message":"Fixes #6672: `yii\\bootstrap\\Dropdown` should register client event handlers","distinct":true,"url":"https://api.github.com/repos/yiisoft/yii2-bootstrap/commits/43b808a9d799d9b08dca5790722d1b51196e7e25"}]},"public":true,"created_at":"2015-01-01T15:01:27Z","org":{"id":993323,"login":"yiisoft","gravatar_id":"","url":"https://api.github.com/orgs/yiisoft","avatar_url":"https://avatars.githubusercontent.com/u/993323?"}}
,{"id":"2489651758","type":"PushEvent","actor":{"id":2338889,"login":"jzoldak","gravatar_id":"","url":"https://api.github.com/users/jzoldak","avatar_url":"https://avatars.githubusercontent.com/u/2338889?"},"repo":{"id":28165864,"name":"jzoldak/edx-platform","url":"https://api.github.com/repos/jzoldak/edx-platform"},"payload":{"push_id":536864302,"size":1,"distinct_size":1,"ref":"refs/heads/zoldak/travis","head":"ff8032c60c1a8184cd75071ebdf000463b0c647b","before":"3c1ec201ddf1ecf9f75ba3451f62e18ebdd506ab","commits":[{"sha":"ff8032c60c1a8184cd75071ebdf000463b0c647b","author":{"email":"07b9114d11c7ec659898bbb6d7e4ac930126bf6c@edx.org","name":"Jesse Zoldak"},"message":"Rerun video tests in bok-choy","distinct":true,"url":"https://api.github.com/repos/jzoldak/edx-platform/commits/ff8032c60c1a8184cd75071ebdf000463b0c647b"}]},"public":true,"created_at":"2015-01-01T15:01:27Z"}
,{"id":"2489651766","type":"PushEvent","actor":{"id":1064317,"login":"Jegp","gravatar_id":"","url":"https://api.github.com/users/Jegp","avatar_url":"https://avatars.githubusercontent.com/u/1064317?"},"repo":{"id":25170072,"name":"siigna/web","url":"https://api.github.com/repos/siigna/web"},"payload":{"push_id":536864305,"size":3,"distinct_size":3,"ref":"refs/heads/master","head":"74fe36b2d549e31f9e319a2df7dc48babf02aa25","before":"c39bc109aedbcd31fb4318f7b4922442410c1f72","commits":[{"sha":"944547015de9cc4621fb70ed12bb11a07f0fe68e","author":{"email":"57a9803b3cda36738e3b2e5920d6b657c2eed2fc@gmail.com","name":"Jens Egholm"},"message":"Added import statements","distinct":true,"url":"https://api.github.com/repos/siigna/web/commits/944547015de9cc4621fb70ed12bb11a07f0fe68e"},{"sha":"c8e78aaeb81d45cadd7bbe999e1c6a0cf89626eb","author":{"email":"57a9803b3cda36738e3b2e5920d6b657c2eed2fc@gmail.com","name":"Jens Egholm"},"message":"Fixed url","distinct":true,"url":"https://api.github.com/repos/siigna/web/commits/c8e78aaeb81d45cadd7bbe999e1c6a0cf89626eb"},{"sha":"74fe36b2d549e31f9e319a2df7dc48babf02aa25","author":{"email":"57a9803b3cda36738e3b2e5920d6b657c2eed2fc@gmail.com","name":"Jens Egholm"},"message":"Merge","distinct":true,"url":"https://api.github.com/repos/siigna/web/commits/74fe36b2d549e31f9e319a2df7dc48babf02aa25"}]},"public":true,"created_at":"2015-01-01T15:01:28Z","org":{"id":1710412,"login":"siigna","gravatar_id":"","url":"https://api.github.com/orgs/siigna","avatar_url":"https://avatars.githubusercontent.com/u/1710412?"}}
,{"id":"2489651767","type":"PushEvent","actor":{"id":5726519,"login":"Daverball","gravatar_id":"","url":"https://api.github.com/users/Daverball","avatar_url":"https://avatars.githubusercontent.com/u/5726519?"},"repo":{"id":28491445,"name":"Daverball/mkxp","url":"https://api.github.com/repos/Daverball/mkxp"},"payload":{"push_id":536864307,"size":1,"distinct_size":1,"ref":"refs/heads/lisa","head":"bfde60d93dea2b797e8cfe1400cefea8dd006113","before":"c490641f9be08ca4ac33d53379af44c321a04d56","commits":[{"sha":"bfde60d93dea2b797e8cfe1400cefea8dd006113","author":{"email":"bfcdf3e6ca6cef45543bfbb57509c92aec9a39fb@portablegaming.de","name":"David Salvisberg"},"message":"Changed default binds and the button descriptions.","distinct":true,"url":"https://api.github.com/repos/Daverball/mkxp/commits/bfde60d93dea2b797e8cfe1400cefea8dd006113"}]},"public":true,"created_at":"2015-01-01T15:01:28Z"}
,{"id":"2489651768","type":"PushEvent","actor":{"id":8841750,"login":"giorgia-amici","gravatar_id":"","url":"https://api.github.com/users/giorgia-amici","avatar_url":"https://avatars.githubusercontent.com/u/8841750?"},"repo":{"id":28663730,"name":"giorgia-amici/testing_angular_exmples","url":"https://api.github.com/repos/giorgia-amici/testing_angular_exmples"},"payload":{"push_id":536864308,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"4cec8f79defc9b9f2d738d9e571a555b11a7e3ae","before":"6b676976a1bb6e3ec28073dcf6d68dc5d7264cf8","commits":[{"sha":"4cec8f79defc9b9f2d738d9e571a555b11a7e3ae","author":{"email":"6fac0037488835a7472109dab8130ba17c947554@gmail.com","name":"Giorgia"},"message":"to add $resource","distinct":true,"url":"https://api.github.com/repos/giorgia-amici/testing_angular_exmples/commits/4cec8f79defc9b9f2d738d9e571a555b11a7e3ae"}]},"public":true,"created_at":"2015-01-01T15:01:29Z"}
,{"id":"2489651770","type":"WatchEvent","actor":{"id":9958076,"login":"youngchullee","gravatar_id":"","url":"https://api.github.com/users/youngchullee","avatar_url":"https://avatars.githubusercontent.com/u/9958076?"},"repo":{"id":13590146,"name":"bardsoftware/ace","url":"https://api.github.com/repos/bardsoftware/ace"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:01:29Z","org":{"id":2625618,"login":"bardsoftware","gravatar_id":"","url":"https://api.github.com/orgs/bardsoftware","avatar_url":"https://avatars.githubusercontent.com/u/2625618?"}}
,{"id":"2489651771","type":"ForkEvent","actor":{"id":1218095,"login":"superzhang","gravatar_id":"","url":"https://api.github.com/users/superzhang","avatar_url":"https://avatars.githubusercontent.com/u/1218095?"},"repo":{"id":3261830,"name":"tommy351/Octopress-Theme-Slash","url":"https://api.github.com/repos/tommy351/Octopress-Theme-Slash"},"payload":{"forkee":{"id":28688624,"name":"Octopress-Theme-Slash","full_name":"superzhang/Octopress-Theme-Slash","owner":{"login":"superzhang","id":1218095,"avatar_url":"https://avatars.githubusercontent.com/u/1218095?v=3","gravatar_id":"","url":"https://api.github.com/users/superzhang","html_url":"https://github.com/superzhang","followers_url":"https://api.github.com/users/superzhang/followers","following_url":"https://api.github.com/users/superzhang/following{/other_user}","gists_url":"https://api.github.com/users/superzhang/gists{/gist_id}","starred_url":"https://api.github.com/users/superzhang/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/superzhang/subscriptions","organizations_url":"https://api.github.com/users/superzhang/orgs","repos_url":"https://api.github.com/users/superzhang/repos","events_url":"https://api.github.com/users/superzhang/events{/privacy}","received_events_url":"https://api.github.com/users/superzhang/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/superzhang/Octopress-Theme-Slash","description":"Slash — a minimal theme for Octopress","fork":true,"url":"https://api.github.com/repos/superzhang/Octopress-Theme-Slash","forks_url":"https://api.github.com/repos/superzhang/Octopress-Theme-Slash/forks","keys_url":"https://api.github.com/repos/superzhang/Octopress-Theme-Slash/keys{/key_id}","collaborators_url":"https://api.github.com/repos/superzhang/Octopress-Theme-Slash/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/superzhang/Octopress-Theme-Slash/teams","hooks_url":"https://api.github.com/repos/superzhang/Octopress-Theme-Slash/hooks","issue_events_url":"https://api.github.com/repos/superzhang/Octopress-Theme-Slash/issues/events{/number}","events_url":"https://api.github.com/repos/superzhang/Octopress-Theme-Slash/events","assignees_url":"https://api.github.com/repos/superzhang/Octopress-Theme-Slash/assignees{/user}","branches_url":"https://api.github.com/repos/superzhang/Octopress-Theme-Slash/branches{/branch}","tags_url":"https://api.github.com/repos/superzhang/Octopress-Theme-Slash/tags","blobs_url":"https://api.github.com/repos/superzhang/Octopress-Theme-Slash/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/superzhang/Octopress-Theme-Slash/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/superzhang/Octopress-Theme-Slash/git/refs{/sha}","trees_url":"https://api.github.com/repos/superzhang/Octopress-Theme-Slash/git/trees{/sha}","statuses_url":"https://api.github.com/repos/superzhang/Octopress-Theme-Slash/statuses/{sha}","languages_url":"https://api.github.com/repos/superzhang/Octopress-Theme-Slash/languages","stargazers_url":"https://api.github.com/repos/superzhang/Octopress-Theme-Slash/stargazers","contributors_url":"https://api.github.com/repos/superzhang/Octopress-Theme-Slash/contributors","subscribers_url":"https://api.github.com/repos/superzhang/Octopress-Theme-Slash/subscribers","subscription_url":"https://api.github.com/repos/superzhang/Octopress-Theme-Slash/subscription","commits_url":"https://api.github.com/repos/superzhang/Octopress-Theme-Slash/commits{/sha}","git_commits_url":"https://api.github.com/repos/superzhang/Octopress-Theme-Slash/git/commits{/sha}","comments_url":"https://api.github.com/repos/superzhang/Octopress-Theme-Slash/comments{/number}","issue_comment_url":"https://api.github.com/repos/superzhang/Octopress-Theme-Slash/issues/comments/{number}","contents_url":"https://api.github.com/repos/superzhang/Octopress-Theme-Slash/contents/{+path}","compare_url":"https://api.github.com/repos/superzhang/Octopress-Theme-Slash/compare/{base}...{head}","merges_url":"https://api.github.com/repos/superzhang/Octopress-Theme-Slash/merges","archive_url":"https://api.github.com/repos/superzhang/Octopress-Theme-Slash/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/superzhang/Octopress-Theme-Slash/downloads","issues_url":"https://api.github.com/repos/superzhang/Octopress-Theme-Slash/issues{/number}","pulls_url":"https://api.github.com/repos/superzhang/Octopress-Theme-Slash/pulls{/number}","milestones_url":"https://api.github.com/repos/superzhang/Octopress-Theme-Slash/milestones{/number}","notifications_url":"https://api.github.com/repos/superzhang/Octopress-Theme-Slash/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/superzhang/Octopress-Theme-Slash/labels{/name}","releases_url":"https://api.github.com/repos/superzhang/Octopress-Theme-Slash/releases{/id}","created_at":"2015-01-01T15:01:29Z","updated_at":"2014-12-27T02:51:48Z","pushed_at":"2014-11-03T02:30:27Z","git_url":"git://github.com/superzhang/Octopress-Theme-Slash.git","ssh_url":"git@github.com:superzhang/Octopress-Theme-Slash.git","clone_url":"https://github.com/superzhang/Octopress-Theme-Slash.git","svn_url":"https://github.com/superzhang/Octopress-Theme-Slash","homepage":"zespia.tw/Octopress-Theme-Slash","size":702,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":false,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master","public":true}},"public":true,"created_at":"2015-01-01T15:01:29Z"}
,{"id":"2489651772","type":"PushEvent","actor":{"id":5591545,"login":"drjorgepolanco","gravatar_id":"","url":"https://api.github.com/users/drjorgepolanco","avatar_url":"https://avatars.githubusercontent.com/u/5591545?"},"repo":{"id":28620331,"name":"drjorgepolanco/depot","url":"https://api.github.com/repos/drjorgepolanco/depot"},"payload":{"push_id":536864310,"size":3,"distinct_size":3,"ref":"refs/heads/master","head":"fa7744f3bcf704f85b7e1c00fa82f8d80efe05a7","before":"36bbee955d1cc50f261570e2e0f4715f143de18b","commits":[{"sha":"4897d2cc80da285acbd5f65dedd304e060eb2d78","author":{"email":"d1b928b8d508e3f66cae7957e98afb6318e80cde@GMAIL.COM","name":"JORGE POLANCO"},"message":"Add remote: true for AJAX","distinct":true,"url":"https://api.github.com/repos/drjorgepolanco/depot/commits/4897d2cc80da285acbd5f65dedd304e060eb2d78"},{"sha":"583cbeacb1cc0a8a5b0acb2497f7e8a2073acec5","author":{"email":"d1b928b8d508e3f66cae7957e98afb6318e80cde@GMAIL.COM","name":"JORGE POLANCO"},"message":"Add formt.js to support AJAX","distinct":true,"url":"https://api.github.com/repos/drjorgepolanco/depot/commits/583cbeacb1cc0a8a5b0acb2497f7e8a2073acec5"},{"sha":"fa7744f3bcf704f85b7e1c00fa82f8d80efe05a7","author":{"email":"d1b928b8d508e3f66cae7957e98afb6318e80cde@GMAIL.COM","name":"JORGE POLANCO"},"message":"Create template to update cart using AJAX","distinct":true,"url":"https://api.github.com/repos/drjorgepolanco/depot/commits/fa7744f3bcf704f85b7e1c00fa82f8d80efe05a7"}]},"public":true,"created_at":"2015-01-01T15:01:29Z"}
,{"id":"2489651774","type":"PushEvent","actor":{"id":9466791,"login":"LukasGoetz","gravatar_id":"","url":"https://api.github.com/users/LukasGoetz","avatar_url":"https://avatars.githubusercontent.com/u/9466791?"},"repo":{"id":25974031,"name":"dorleosterode/gt-scaffold","url":"https://api.github.com/repos/dorleosterode/gt-scaffold"},"payload":{"push_id":536864311,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"8d384afd03146e18c2481da41068cfd1a8f1ae30","before":"97c198e08643421de7bb5a79d869d7dd52201892","commits":[{"sha":"8d384afd03146e18c2481da41068cfd1a8f1ae30","author":{"email":"0d05806e6afb667c803401ebb2e8e6180854e6d0@studium.uni-hamburg.de","name":"Lukas G"},"message":"fixed bugs","distinct":true,"url":"https://api.github.com/repos/dorleosterode/gt-scaffold/commits/8d384afd03146e18c2481da41068cfd1a8f1ae30"}]},"public":true,"created_at":"2015-01-01T15:01:30Z"}
,{"id":"2489651776","type":"PushEvent","actor":{"id":1319330,"login":"prateekagr98","gravatar_id":"","url":"https://api.github.com/users/prateekagr98","avatar_url":"https://avatars.githubusercontent.com/u/1319330?"},"repo":{"id":24689724,"name":"prateekagr98/Fork-Read-Node","url":"https://api.github.com/repos/prateekagr98/Fork-Read-Node"},"payload":{"push_id":536864312,"size":3,"distinct_size":3,"ref":"refs/heads/master","head":"db3d967e2c53fb21aac8d96b2165c3ce7a198591","before":"743cdb07e0798acb565437133adc2cb736f322b2","commits":[{"sha":"d16c5398b1d995801d25145e95490fdff566ba5d","author":{"email":"19de00c9cff63e88546050e79ed02691dc93c6a2@gmail.com","name":"Prateek Agarwal"},"message":"Changed OG image url","distinct":true,"url":"https://api.github.com/repos/prateekagr98/Fork-Read-Node/commits/d16c5398b1d995801d25145e95490fdff566ba5d"},{"sha":"e8bd709bb92fb9b74946370af839078afd703ae7","author":{"email":"19de00c9cff63e88546050e79ed02691dc93c6a2@gmail.com","name":"Prateek Agarwal"},"message":"Add html param","distinct":true,"url":"https://api.github.com/repos/prateekagr98/Fork-Read-Node/commits/e8bd709bb92fb9b74946370af839078afd703ae7"},{"sha":"db3d967e2c53fb21aac8d96b2165c3ce7a198591","author":{"email":"19de00c9cff63e88546050e79ed02691dc93c6a2@gmail.com","name":"Prateek Agarwal"},"message":"Add image dimension","distinct":true,"url":"https://api.github.com/repos/prateekagr98/Fork-Read-Node/commits/db3d967e2c53fb21aac8d96b2165c3ce7a198591"}]},"public":true,"created_at":"2015-01-01T15:01:30Z"}
,{"id":"2489651777","type":"WatchEvent","actor":{"id":624975,"login":"ujuc","gravatar_id":"","url":"https://api.github.com/users/ujuc","avatar_url":"https://avatars.githubusercontent.com/u/624975?"},"repo":{"id":557980,"name":"Automattic/socket.io","url":"https://api.github.com/repos/Automattic/socket.io"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:01:30Z","org":{"id":887802,"login":"Automattic","gravatar_id":"","url":"https://api.github.com/orgs/Automattic","avatar_url":"https://avatars.githubusercontent.com/u/887802?"}}
,{"id":"2489651780","type":"IssueCommentEvent","actor":{"id":5571620,"login":"rhempel","gravatar_id":"","url":"https://api.github.com/users/rhempel","avatar_url":"https://avatars.githubusercontent.com/u/5571620?"},"repo":{"id":21779104,"name":"ev3dev/ev3dev.github.io","url":"https://api.github.com/repos/ev3dev/ev3dev.github.io"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/ev3dev/ev3dev.github.io/issues/37","labels_url":"https://api.github.com/repos/ev3dev/ev3dev.github.io/issues/37/labels{/name}","comments_url":"https://api.github.com/repos/ev3dev/ev3dev.github.io/issues/37/comments","events_url":"https://api.github.com/repos/ev3dev/ev3dev.github.io/issues/37/events","html_url":"https://github.com/ev3dev/ev3dev.github.io/pull/37","id":53172964,"number":37,"title":"Add site news and associated atom feed","user":{"login":"WasabiFan","id":3310349,"avatar_url":"https://avatars.githubusercontent.com/u/3310349?v=3","gravatar_id":"","url":"https://api.github.com/users/WasabiFan","html_url":"https://github.com/WasabiFan","followers_url":"https://api.github.com/users/WasabiFan/followers","following_url":"https://api.github.com/users/WasabiFan/following{/other_user}","gists_url":"https://api.github.com/users/WasabiFan/gists{/gist_id}","starred_url":"https://api.github.com/users/WasabiFan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/WasabiFan/subscriptions","organizations_url":"https://api.github.com/users/WasabiFan/orgs","repos_url":"https://api.github.com/users/WasabiFan/repos","events_url":"https://api.github.com/users/WasabiFan/events{/privacy}","received_events_url":"https://api.github.com/users/WasabiFan/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":14,"created_at":"2014-12-31T08:15:47Z","updated_at":"2015-01-01T15:01:31Z","closed_at":"2015-01-01T04:59:54Z","pull_request":{"url":"https://api.github.com/repos/ev3dev/ev3dev.github.io/pulls/37","html_url":"https://github.com/ev3dev/ev3dev.github.io/pull/37","diff_url":"https://github.com/ev3dev/ev3dev.github.io/pull/37.diff","patch_url":"https://github.com/ev3dev/ev3dev.github.io/pull/37.patch"},"body":"This PR adds a \"news\" page that displays a feed of posts (part of the discussion in ev3dev/ev3dev#109). There is also an atom feed of the same posts. I included a \"lorem ipsum\" news item to test with but we can (and probably should) replace it with an actual post before merging the PR.\r\n\r\nTo add this, there were a few larger things that I changed:\r\n- I added a \"community\" drop-down that includes the news, project gallery, and contributing menu items. If I had added another without collapsing these, the nav would have been much too wide for smaller screens.\r\n- I deleted the old `_posts` folder and moved the projects to a new `_posts` folder inside the existing projects folder. This both eliminates the need for explicit category definition (because Jekyll derives the set of categories by the directory structure above the posts) and allows us to add multiple post categories and keep them separate.\r\n\r\nNeither of these changes should break anything technically, although we will need to update the \"adding a project\" guide with the new path.\r\n\r\nMy `gh-pages` branch has been updated with these changes as well."},"comment":{"url":"https://api.github.com/repos/ev3dev/ev3dev.github.io/issues/comments/68488520","html_url":"https://github.com/ev3dev/ev3dev.github.io/pull/37#issuecomment-68488520","issue_url":"https://api.github.com/repos/ev3dev/ev3dev.github.io/issues/37","id":68488520,"user":{"login":"rhempel","id":5571620,"avatar_url":"https://avatars.githubusercontent.com/u/5571620?v=3","gravatar_id":"","url":"https://api.github.com/users/rhempel","html_url":"https://github.com/rhempel","followers_url":"https://api.github.com/users/rhempel/followers","following_url":"https://api.github.com/users/rhempel/following{/other_user}","gists_url":"https://api.github.com/users/rhempel/gists{/gist_id}","starred_url":"https://api.github.com/users/rhempel/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rhempel/subscriptions","organizations_url":"https://api.github.com/users/rhempel/orgs","repos_url":"https://api.github.com/users/rhempel/repos","events_url":"https://api.github.com/users/rhempel/events{/privacy}","received_events_url":"https://api.github.com/users/rhempel/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:01:31Z","updated_at":"2015-01-01T15:01:31Z","body":"Yes, thanks very much! It makes the site that much better for everyone."}},"public":true,"created_at":"2015-01-01T15:01:31Z","org":{"id":6878323,"login":"ev3dev","gravatar_id":"","url":"https://api.github.com/orgs/ev3dev","avatar_url":"https://avatars.githubusercontent.com/u/6878323?"}}
,{"id":"2489651783","type":"PushEvent","actor":{"id":6304475,"login":"thedman1361","gravatar_id":"","url":"https://api.github.com/users/thedman1361","avatar_url":"https://avatars.githubusercontent.com/u/6304475?"},"repo":{"id":27273059,"name":"Coders-Tree/tree-collab","url":"https://api.github.com/repos/Coders-Tree/tree-collab"},"payload":{"push_id":536864316,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"e83935e297e2ccb6286fd280c9e61754eba1bce5","before":"375bf81b3bc9a7795b03e6e9c67b521cf1b944ae","commits":[{"sha":"e83935e297e2ccb6286fd280c9e61754eba1bce5","author":{"email":"4bde565915bcc7f2065135f533f62a84a737521f@yahoo.co.uk","name":"thedman1361"},"message":"Update files","distinct":true,"url":"https://api.github.com/repos/Coders-Tree/tree-collab/commits/e83935e297e2ccb6286fd280c9e61754eba1bce5"}]},"public":true,"created_at":"2015-01-01T15:01:32Z","org":{"id":9698976,"login":"Coders-Tree","gravatar_id":"","url":"https://api.github.com/orgs/Coders-Tree","avatar_url":"https://avatars.githubusercontent.com/u/9698976?"}}
,{"id":"2489651788","type":"PushEvent","actor":{"id":5772140,"login":"filip-daca","gravatar_id":"","url":"https://api.github.com/users/filip-daca","avatar_url":"https://avatars.githubusercontent.com/u/5772140?"},"repo":{"id":26588011,"name":"filip-daca/shimmer","url":"https://api.github.com/repos/filip-daca/shimmer"},"payload":{"push_id":536864318,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"72a71acb2796ac470c3247fcedd8a1f0c3e0a407","before":"3acd881d57c055ae3e66869b7dc943a72302ecfd","commits":[{"sha":"72a71acb2796ac470c3247fcedd8a1f0c3e0a407","author":{"email":"11cb1e5035043fa80727e16973dc59935baabebc@gmail.com","name":"Filip Daca"},"message":"Fixed Eclipse JSF integration:\n- tags autocomplete\n- JSF expressions autocomplete","distinct":true,"url":"https://api.github.com/repos/filip-daca/shimmer/commits/72a71acb2796ac470c3247fcedd8a1f0c3e0a407"}]},"public":true,"created_at":"2015-01-01T15:01:33Z"}
,{"id":"2489651794","type":"IssuesEvent","actor":{"id":756669,"login":"Mailaender","gravatar_id":"","url":"https://api.github.com/users/Mailaender","avatar_url":"https://avatars.githubusercontent.com/u/756669?"},"repo":{"id":1008670,"name":"slluis/cydin","url":"https://api.github.com/repos/slluis/cydin"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/slluis/cydin/issues/6","labels_url":"https://api.github.com/repos/slluis/cydin/issues/6/labels{/name}","comments_url":"https://api.github.com/repos/slluis/cydin/issues/6/comments","events_url":"https://api.github.com/repos/slluis/cydin/issues/6/events","html_url":"https://github.com/slluis/cydin/issues/6","id":53221364,"number":6,"title":"More verbose error messages","user":{"login":"Mailaender","id":756669,"avatar_url":"https://avatars.githubusercontent.com/u/756669?v=3","gravatar_id":"","url":"https://api.github.com/users/Mailaender","html_url":"https://github.com/Mailaender","followers_url":"https://api.github.com/users/Mailaender/followers","following_url":"https://api.github.com/users/Mailaender/following{/other_user}","gists_url":"https://api.github.com/users/Mailaender/gists{/gist_id}","starred_url":"https://api.github.com/users/Mailaender/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Mailaender/subscriptions","organizations_url":"https://api.github.com/users/Mailaender/orgs","repos_url":"https://api.github.com/users/Mailaender/repos","events_url":"https://api.github.com/users/Mailaender/events{/privacy}","received_events_url":"https://api.github.com/users/Mailaender/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:01:34Z","updated_at":"2015-01-01T15:01:34Z","closed_at":null,"body":"I only get `The remote server returned an error: (500) Internal Server Error.` on a white page or `Server Error in '/' Application` where it seems Cydin itself crashed, because the log has not been created. That is really frustrating as you keep changing configuration settings and `addin-project.xml` randomly to finally find the flaw by guessing what is wrong."}},"public":true,"created_at":"2015-01-01T15:01:34Z"}
,{"id":"2489651796","type":"PushEvent","actor":{"id":5785031,"login":"ashishsanjayrao","gravatar_id":"","url":"https://api.github.com/users/ashishsanjayrao","avatar_url":"https://avatars.githubusercontent.com/u/5785031?"},"repo":{"id":28625671,"name":"Poornaprajna-Technologies/test","url":"https://api.github.com/repos/Poornaprajna-Technologies/test"},"payload":{"push_id":536864320,"size":1,"distinct_size":1,"ref":"refs/heads/test","head":"735ec29b8c3018560ee82661aa4165e789fddf2f","before":"1ef70b2d64fef77f1a0a1a01036d10bb4a865169","commits":[{"sha":"735ec29b8c3018560ee82661aa4165e789fddf2f","author":{"email":"e225f70e51a1c8b116ff8cab1ebd81c5cf6dacb1@gmail.com","name":"ashishsanjayrao"},"message":"trying to add the new folder","distinct":true,"url":"https://api.github.com/repos/Poornaprajna-Technologies/test/commits/735ec29b8c3018560ee82661aa4165e789fddf2f"}]},"public":true,"created_at":"2015-01-01T15:01:34Z","org":{"id":9415520,"login":"Poornaprajna-Technologies","gravatar_id":"","url":"https://api.github.com/orgs/Poornaprajna-Technologies","avatar_url":"https://avatars.githubusercontent.com/u/9415520?"}}
,{"id":"2489651797","type":"PushEvent","actor":{"id":1201409,"login":"zordius","gravatar_id":"","url":"https://api.github.com/users/zordius","avatar_url":"https://avatars.githubusercontent.com/u/1201409?"},"repo":{"id":28685419,"name":"zordius/gulp-github","url":"https://api.github.com/repos/zordius/gulp-github"},"payload":{"push_id":536864321,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"25e76bca2086e73d43a7259f089b0b7ca568ee4a","before":"e251ab3b94db7d6ea42974d607417cb8ff0fba94","commits":[{"sha":"ff67b872005f925146174211619be2d3b68185a1","author":{"email":"29ce3600a8a0aaa041e680f5a3675553360fe867@yahoo-inc.com","name":"Zordius Chen"},"message":"update","distinct":true,"url":"https://api.github.com/repos/zordius/gulp-github/commits/ff67b872005f925146174211619be2d3b68185a1"},{"sha":"25e76bca2086e73d43a7259f089b0b7ca568ee4a","author":{"email":"29ce3600a8a0aaa041e680f5a3675553360fe867@yahoo-inc.com","name":"Zordius Chen"},"message":"test on travis","distinct":true,"url":"https://api.github.com/repos/zordius/gulp-github/commits/25e76bca2086e73d43a7259f089b0b7ca568ee4a"}]},"public":true,"created_at":"2015-01-01T15:01:34Z"}
,{"id":"2489651804","type":"PushEvent","actor":{"id":938567,"login":"abhardwaj","gravatar_id":"","url":"https://api.github.com/users/abhardwaj","avatar_url":"https://avatars.githubusercontent.com/u/938567?"},"repo":{"id":13134203,"name":"abhardwaj/datahub","url":"https://api.github.com/repos/abhardwaj/datahub"},"payload":{"push_id":536864324,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"123a619699a240e3cefae4187042dcd132888f31","before":"4d2bf81e4cb57999824b9149048b959d73edaea9","commits":[{"sha":"123a619699a240e3cefae4187042dcd132888f31","author":{"email":"04cd62effbece7d264364f151d3cb7040fe7e8f6@csail.mit.edu","name":"Anant Bhardwaj"},"message":"a little re-style","distinct":true,"url":"https://api.github.com/repos/abhardwaj/datahub/commits/123a619699a240e3cefae4187042dcd132888f31"}]},"public":true,"created_at":"2015-01-01T15:01:36Z"}
,{"id":"2489651806","type":"PushEvent","actor":{"id":1563093,"login":"lvyunyi","gravatar_id":"","url":"https://api.github.com/users/lvyunyi","avatar_url":"https://avatars.githubusercontent.com/u/1563093?"},"repo":{"id":23064298,"name":"lvyunyi/tutorial-ror","url":"https://api.github.com/repos/lvyunyi/tutorial-ror"},"payload":{"push_id":536864325,"size":1,"distinct_size":1,"ref":"refs/heads/new-updating-users","head":"13d6981b3726d166bef98fdda43ef7157d09d83b","before":"fe04e6e549326082d412fe9bcd839c24210d451c","commits":[{"sha":"13d6981b3726d166bef98fdda43ef7157d09d83b","author":{"email":"69a03d77aae06706cd569c691b5e39da1e40df09@gmail.com","name":"lvyunyi"},"message":"完成编辑用户,准备开始9.2权限限制","distinct":true,"url":"https://api.github.com/repos/lvyunyi/tutorial-ror/commits/13d6981b3726d166bef98fdda43ef7157d09d83b"}]},"public":true,"created_at":"2015-01-01T15:01:37Z"}
,{"id":"2489651807","type":"PushEvent","actor":{"id":1883165,"login":"manmyung","gravatar_id":"","url":"https://api.github.com/users/manmyung","avatar_url":"https://avatars.githubusercontent.com/u/1883165?"},"repo":{"id":27954898,"name":"manmyung/study-4clojure","url":"https://api.github.com/repos/manmyung/study-4clojure"},"payload":{"push_id":536864327,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"ee822ce5f57f499ffa84806f36252259fb44728b","before":"ea5b24041e8ae66050028d4c9334491531f818ae","commits":[{"sha":"ee822ce5f57f499ffa84806f36252259fb44728b","author":{"email":"ab0de8a5debb5a0bc3c57846c2316b38f658d3f8@gmail.com","name":"manmyung"},"message":"~p40","distinct":true,"url":"https://api.github.com/repos/manmyung/study-4clojure/commits/ee822ce5f57f499ffa84806f36252259fb44728b"}]},"public":true,"created_at":"2015-01-01T15:01:37Z"}
,{"id":"2489651810","type":"WatchEvent","actor":{"id":655017,"login":"nikhildaga","gravatar_id":"","url":"https://api.github.com/users/nikhildaga","avatar_url":"https://avatars.githubusercontent.com/u/655017?"},"repo":{"id":16089035,"name":"yasaricli/metrello","url":"https://api.github.com/repos/yasaricli/metrello"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:01:37Z"}
,{"id":"2489651814","type":"IssueCommentEvent","actor":{"id":36227,"login":"tsloughter","gravatar_id":"","url":"https://api.github.com/users/tsloughter","avatar_url":"https://avatars.githubusercontent.com/u/36227?"},"repo":{"id":26610130,"name":"rebar/rebar3","url":"https://api.github.com/repos/rebar/rebar3"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/rebar/rebar3/issues/83","labels_url":"https://api.github.com/repos/rebar/rebar3/issues/83/labels{/name}","comments_url":"https://api.github.com/repos/rebar/rebar3/issues/83/comments","events_url":"https://api.github.com/repos/rebar/rebar3/issues/83/events","html_url":"https://github.com/rebar/rebar3/pull/83","id":53153616,"number":83,"title":"overrides working except for transitive dep inheritance with lock file","user":{"login":"tsloughter","id":36227,"avatar_url":"https://avatars.githubusercontent.com/u/36227?v=3","gravatar_id":"","url":"https://api.github.com/users/tsloughter","html_url":"https://github.com/tsloughter","followers_url":"https://api.github.com/users/tsloughter/followers","following_url":"https://api.github.com/users/tsloughter/following{/other_user}","gists_url":"https://api.github.com/users/tsloughter/gists{/gist_id}","starred_url":"https://api.github.com/users/tsloughter/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tsloughter/subscriptions","organizations_url":"https://api.github.com/users/tsloughter/orgs","repos_url":"https://api.github.com/users/tsloughter/repos","events_url":"https://api.github.com/users/tsloughter/events{/privacy}","received_events_url":"https://api.github.com/users/tsloughter/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2014-12-30T22:43:25Z","updated_at":"2015-01-01T15:01:37Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/rebar/rebar3/pulls/83","html_url":"https://github.com/rebar/rebar3/pull/83","diff_url":"https://github.com/rebar/rebar3/pull/83.diff","patch_url":"https://github.com/rebar/rebar3/pull/83.patch"},"body":"Not ready to merge, it doesn't work with a lock file. Opening for comment."},"comment":{"url":"https://api.github.com/repos/rebar/rebar3/issues/comments/68488524","html_url":"https://github.com/rebar/rebar3/pull/83#issuecomment-68488524","issue_url":"https://api.github.com/repos/rebar/rebar3/issues/83","id":68488524,"user":{"login":"tsloughter","id":36227,"avatar_url":"https://avatars.githubusercontent.com/u/36227?v=3","gravatar_id":"","url":"https://api.github.com/users/tsloughter","html_url":"https://github.com/tsloughter","followers_url":"https://api.github.com/users/tsloughter/followers","following_url":"https://api.github.com/users/tsloughter/following{/other_user}","gists_url":"https://api.github.com/users/tsloughter/gists{/gist_id}","starred_url":"https://api.github.com/users/tsloughter/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tsloughter/subscriptions","organizations_url":"https://api.github.com/users/tsloughter/orgs","repos_url":"https://api.github.com/users/tsloughter/repos","events_url":"https://api.github.com/users/tsloughter/events{/privacy}","received_events_url":"https://api.github.com/users/tsloughter/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:01:37Z","updated_at":"2015-01-01T15:01:37Z","body":"So maybe a new issue. Let's say you have a config with 1 dep `a` and `a` depends on `b`. Additionally you have some override in `a` for `b`. You run `compile` and get a lock file. Next time you run everything works as before, the override is properly run on `b` from `a`.\r\n\r\nBut if you add `b` to your top level config and run `compile` it will still use the lock file version of `b` but it will not use the override from `a`. This is because it uses the config file list to traverse deps even if there is a lock file, that way it gets the overrides correct (except in a case like this), and checks the locks for each dep when it hits it to use the right source."}},"public":true,"created_at":"2015-01-01T15:01:38Z","org":{"id":2651508,"login":"rebar","gravatar_id":"","url":"https://api.github.com/orgs/rebar","avatar_url":"https://avatars.githubusercontent.com/u/2651508?"}}
,{"id":"2489651830","type":"IssueCommentEvent","actor":{"id":506932,"login":"emersion","gravatar_id":"","url":"https://api.github.com/users/emersion","avatar_url":"https://avatars.githubusercontent.com/u/506932?"},"repo":{"id":27083785,"name":"emersion/bups","url":"https://api.github.com/repos/emersion/bups"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/emersion/bups/issues/4","labels_url":"https://api.github.com/repos/emersion/bups/issues/4/labels{/name}","comments_url":"https://api.github.com/repos/emersion/bups/issues/4/comments","events_url":"https://api.github.com/repos/emersion/bups/issues/4/events","html_url":"https://github.com/emersion/bups/issues/4","id":52375392,"number":4,"title":"Systemd support","user":{"login":"Edenhofer","id":7541458,"avatar_url":"https://avatars.githubusercontent.com/u/7541458?v=3","gravatar_id":"","url":"https://api.github.com/users/Edenhofer","html_url":"https://github.com/Edenhofer","followers_url":"https://api.github.com/users/Edenhofer/followers","following_url":"https://api.github.com/users/Edenhofer/following{/other_user}","gists_url":"https://api.github.com/users/Edenhofer/gists{/gist_id}","starred_url":"https://api.github.com/users/Edenhofer/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Edenhofer/subscriptions","organizations_url":"https://api.github.com/users/Edenhofer/orgs","repos_url":"https://api.github.com/users/Edenhofer/repos","events_url":"https://api.github.com/users/Edenhofer/events{/privacy}","received_events_url":"https://api.github.com/users/Edenhofer/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/emersion/bups/labels/enhancement","name":"enhancement","color":"84b6eb"}],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":2,"created_at":"2014-12-18T15:22:21Z","updated_at":"2015-01-01T15:01:38Z","closed_at":null,"body":"Since many major linux distributions heavily depend on systemd - if one likes it or not. It is usually preinstalled. Therefore I would suggest to include systemd-timer (https://wiki.archlinux.org/index.php/Systemd/Timers) support for the periodic backups instead or in supplement to anacron. "},"comment":{"url":"https://api.github.com/repos/emersion/bups/issues/comments/68488525","html_url":"https://github.com/emersion/bups/issues/4#issuecomment-68488525","issue_url":"https://api.github.com/repos/emersion/bups/issues/4","id":68488525,"user":{"login":"emersion","id":506932,"avatar_url":"https://avatars.githubusercontent.com/u/506932?v=3","gravatar_id":"","url":"https://api.github.com/users/emersion","html_url":"https://github.com/emersion","followers_url":"https://api.github.com/users/emersion/followers","following_url":"https://api.github.com/users/emersion/following{/other_user}","gists_url":"https://api.github.com/users/emersion/gists{/gist_id}","starred_url":"https://api.github.com/users/emersion/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/emersion/subscriptions","organizations_url":"https://api.github.com/users/emersion/orgs","repos_url":"https://api.github.com/users/emersion/repos","events_url":"https://api.github.com/users/emersion/events{/privacy}","received_events_url":"https://api.github.com/users/emersion/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:01:38Z","updated_at":"2015-01-01T15:01:38Z","body":"Just added systemd timers support. There is an issue, you cannot control the backup frequency (it's weekly). You'll have to edit the systemd timer manually to change that.\r\n\r\nDo you know how to execute a systemd timer each `n` days?"}},"public":true,"created_at":"2015-01-01T15:01:38Z"}
,{"id":"2489651848","type":"PushEvent","actor":{"id":5453359,"login":"xcatliu","gravatar_id":"","url":"https://api.github.com/users/xcatliu","avatar_url":"https://avatars.githubusercontent.com/u/5453359?"},"repo":{"id":23575850,"name":"xcatliu/xcat","url":"https://api.github.com/repos/xcatliu/xcat"},"payload":{"push_id":536864330,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"dd0472689572ee5c5493e3f89449bdc052d225fd","before":"1d3aeae361e720bc060416ec1e64e4c2598d6bea","commits":[{"sha":"dd0472689572ee5c5493e3f89449bdc052d225fd","author":{"email":"444e05e21702ccf6b29ec3d3dde58eb1cd061705@gmail.com","name":"xcatliu"},"message":"try isomorphic","distinct":true,"url":"https://api.github.com/repos/xcatliu/xcat/commits/dd0472689572ee5c5493e3f89449bdc052d225fd"}]},"public":true,"created_at":"2015-01-01T15:01:38Z"}
,{"id":"2489651849","type":"PushEvent","actor":{"id":785706,"login":"Sjeiti","gravatar_id":"","url":"https://api.github.com/users/Sjeiti","avatar_url":"https://avatars.githubusercontent.com/u/785706?"},"repo":{"id":4877664,"name":"Sjeiti/TinySort","url":"https://api.github.com/repos/Sjeiti/TinySort"},"payload":{"push_id":536864329,"size":1,"distinct_size":1,"ref":"refs/heads/AMDandCommonJS","head":"e03c49428829caa072af004c2e0f165897d6ee43","before":"671f7fcb985420b85c93c1868fb3e39a627fb8bc","commits":[{"sha":"e03c49428829caa072af004c2e0f165897d6ee43","author":{"email":"4ddb9d80ffb32a942910c2171767a19e3fa6f122@gmail.com","name":"Ron Valstar"},"message":"fixed tinysort amd as singleton","distinct":true,"url":"https://api.github.com/repos/Sjeiti/TinySort/commits/e03c49428829caa072af004c2e0f165897d6ee43"}]},"public":true,"created_at":"2015-01-01T15:01:38Z"}
,{"id":"2489651851","type":"PushEvent","actor":{"id":3963029,"login":"aliaksandr-pasynkau","gravatar_id":"","url":"https://api.github.com/users/aliaksandr-pasynkau","avatar_url":"https://avatars.githubusercontent.com/u/3963029?"},"repo":{"id":28563733,"name":"aliaksandr-pasynkau/express-verifier","url":"https://api.github.com/repos/aliaksandr-pasynkau/express-verifier"},"payload":{"push_id":536864331,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"0125db7a3c6fe004ebde442a728f1e506e6b504c","before":"a91be49e31d8753b00deed306c00a9a50e2a5379","commits":[{"sha":"d20d14d98e511291868753bf7746477f94ea54e1","author":{"email":"802c66aee3b01f2026ef0a20c975be5768082e0a@gmail.com","name":"Aliaksandr Pasynkau"},"message":"fix links in readme","distinct":true,"url":"https://api.github.com/repos/aliaksandr-pasynkau/express-verifier/commits/d20d14d98e511291868753bf7746477f94ea54e1"},{"sha":"0125db7a3c6fe004ebde442a728f1e506e6b504c","author":{"email":"802c66aee3b01f2026ef0a20c975be5768082e0a@gmail.com","name":"Aliaksandr Pasynkau"},"message":"version 0.2.5","distinct":true,"url":"https://api.github.com/repos/aliaksandr-pasynkau/express-verifier/commits/0125db7a3c6fe004ebde442a728f1e506e6b504c"}]},"public":true,"created_at":"2015-01-01T15:01:38Z"}
,{"id":"2489651852","type":"CreateEvent","actor":{"id":3963029,"login":"aliaksandr-pasynkau","gravatar_id":"","url":"https://api.github.com/users/aliaksandr-pasynkau","avatar_url":"https://avatars.githubusercontent.com/u/3963029?"},"repo":{"id":28563733,"name":"aliaksandr-pasynkau/express-verifier","url":"https://api.github.com/repos/aliaksandr-pasynkau/express-verifier"},"payload":{"ref":"0.2.5","ref_type":"tag","master_branch":"master","description":"body, params, query verifier middleware for express framework (nodejs)","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:01:38Z"}
,{"id":"2489651853","type":"ForkEvent","actor":{"id":56722,"login":"freidamachoi","gravatar_id":"","url":"https://api.github.com/users/freidamachoi","avatar_url":"https://avatars.githubusercontent.com/u/56722?"},"repo":{"id":24856478,"name":"zachsnow/ng-inline","url":"https://api.github.com/repos/zachsnow/ng-inline"},"payload":{"forkee":{"id":28688625,"name":"ng-inline","full_name":"freidamachoi/ng-inline","owner":{"login":"freidamachoi","id":56722,"avatar_url":"https://avatars.githubusercontent.com/u/56722?v=3","gravatar_id":"","url":"https://api.github.com/users/freidamachoi","html_url":"https://github.com/freidamachoi","followers_url":"https://api.github.com/users/freidamachoi/followers","following_url":"https://api.github.com/users/freidamachoi/following{/other_user}","gists_url":"https://api.github.com/users/freidamachoi/gists{/gist_id}","starred_url":"https://api.github.com/users/freidamachoi/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/freidamachoi/subscriptions","organizations_url":"https://api.github.com/users/freidamachoi/orgs","repos_url":"https://api.github.com/users/freidamachoi/repos","events_url":"https://api.github.com/users/freidamachoi/events{/privacy}","received_events_url":"https://api.github.com/users/freidamachoi/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/freidamachoi/ng-inline","description":"Faster template inclusion in AngularJS for simple usecases.","fork":true,"url":"https://api.github.com/repos/freidamachoi/ng-inline","forks_url":"https://api.github.com/repos/freidamachoi/ng-inline/forks","keys_url":"https://api.github.com/repos/freidamachoi/ng-inline/keys{/key_id}","collaborators_url":"https://api.github.com/repos/freidamachoi/ng-inline/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/freidamachoi/ng-inline/teams","hooks_url":"https://api.github.com/repos/freidamachoi/ng-inline/hooks","issue_events_url":"https://api.github.com/repos/freidamachoi/ng-inline/issues/events{/number}","events_url":"https://api.github.com/repos/freidamachoi/ng-inline/events","assignees_url":"https://api.github.com/repos/freidamachoi/ng-inline/assignees{/user}","branches_url":"https://api.github.com/repos/freidamachoi/ng-inline/branches{/branch}","tags_url":"https://api.github.com/repos/freidamachoi/ng-inline/tags","blobs_url":"https://api.github.com/repos/freidamachoi/ng-inline/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/freidamachoi/ng-inline/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/freidamachoi/ng-inline/git/refs{/sha}","trees_url":"https://api.github.com/repos/freidamachoi/ng-inline/git/trees{/sha}","statuses_url":"https://api.github.com/repos/freidamachoi/ng-inline/statuses/{sha}","languages_url":"https://api.github.com/repos/freidamachoi/ng-inline/languages","stargazers_url":"https://api.github.com/repos/freidamachoi/ng-inline/stargazers","contributors_url":"https://api.github.com/repos/freidamachoi/ng-inline/contributors","subscribers_url":"https://api.github.com/repos/freidamachoi/ng-inline/subscribers","subscription_url":"https://api.github.com/repos/freidamachoi/ng-inline/subscription","commits_url":"https://api.github.com/repos/freidamachoi/ng-inline/commits{/sha}","git_commits_url":"https://api.github.com/repos/freidamachoi/ng-inline/git/commits{/sha}","comments_url":"https://api.github.com/repos/freidamachoi/ng-inline/comments{/number}","issue_comment_url":"https://api.github.com/repos/freidamachoi/ng-inline/issues/comments/{number}","contents_url":"https://api.github.com/repos/freidamachoi/ng-inline/contents/{+path}","compare_url":"https://api.github.com/repos/freidamachoi/ng-inline/compare/{base}...{head}","merges_url":"https://api.github.com/repos/freidamachoi/ng-inline/merges","archive_url":"https://api.github.com/repos/freidamachoi/ng-inline/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/freidamachoi/ng-inline/downloads","issues_url":"https://api.github.com/repos/freidamachoi/ng-inline/issues{/number}","pulls_url":"https://api.github.com/repos/freidamachoi/ng-inline/pulls{/number}","milestones_url":"https://api.github.com/repos/freidamachoi/ng-inline/milestones{/number}","notifications_url":"https://api.github.com/repos/freidamachoi/ng-inline/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/freidamachoi/ng-inline/labels{/name}","releases_url":"https://api.github.com/repos/freidamachoi/ng-inline/releases{/id}","created_at":"2015-01-01T15:01:38Z","updated_at":"2014-12-17T23:15:57Z","pushed_at":"2014-12-17T23:16:51Z","git_url":"git://github.com/freidamachoi/ng-inline.git","ssh_url":"git@github.com:freidamachoi/ng-inline.git","clone_url":"https://github.com/freidamachoi/ng-inline.git","svn_url":"https://github.com/freidamachoi/ng-inline","homepage":null,"size":145,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":false,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master","public":true}},"public":true,"created_at":"2015-01-01T15:01:38Z"}
,{"id":"2489651855","type":"PullRequestEvent","actor":{"id":1820007,"login":"msteiger","gravatar_id":"","url":"https://api.github.com/users/msteiger","avatar_url":"https://avatars.githubusercontent.com/u/1820007?"},"repo":{"id":1438007,"name":"MovingBlocks/Terasology","url":"https://api.github.com/repos/MovingBlocks/Terasology"},"payload":{"action":"opened","number":1479,"pull_request":{"url":"https://api.github.com/repos/MovingBlocks/Terasology/pulls/1479","id":26743781,"html_url":"https://github.com/MovingBlocks/Terasology/pull/1479","diff_url":"https://github.com/MovingBlocks/Terasology/pull/1479.diff","patch_url":"https://github.com/MovingBlocks/Terasology/pull/1479.patch","issue_url":"https://api.github.com/repos/MovingBlocks/Terasology/issues/1479","number":1479,"state":"open","locked":false,"title":"Support different camera reflection heights","user":{"login":"msteiger","id":1820007,"avatar_url":"https://avatars.githubusercontent.com/u/1820007?v=3","gravatar_id":"","url":"https://api.github.com/users/msteiger","html_url":"https://github.com/msteiger","followers_url":"https://api.github.com/users/msteiger/followers","following_url":"https://api.github.com/users/msteiger/following{/other_user}","gists_url":"https://api.github.com/users/msteiger/gists{/gist_id}","starred_url":"https://api.github.com/users/msteiger/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/msteiger/subscriptions","organizations_url":"https://api.github.com/users/msteiger/orgs","repos_url":"https://api.github.com/users/msteiger/repos","events_url":"https://api.github.com/users/msteiger/events{/privacy}","received_events_url":"https://api.github.com/users/msteiger/received_events","type":"User","site_admin":false},"body":"Currently a fixed height of 32 blocks is used to compute surface reflections. This PR makes this value flexible through a getter/setter in `Camera` and also uses a newly introduced sea level parameter to find meaningful values for this.\r\n\r\nEvery reflection level requires a rendering pass which is why only one reflection level is supported.\r\n\r\nAs the world generator defines this value, it must also be communicated to remote clients. This is done through the `ServerInfoMessage` class.\r\n\r\n","created_at":"2015-01-01T15:01:38Z","updated_at":"2015-01-01T15:01:38Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/MovingBlocks/Terasology/pulls/1479/commits","review_comments_url":"https://api.github.com/repos/MovingBlocks/Terasology/pulls/1479/comments","review_comment_url":"https://api.github.com/repos/MovingBlocks/Terasology/pulls/comments/{number}","comments_url":"https://api.github.com/repos/MovingBlocks/Terasology/issues/1479/comments","statuses_url":"https://api.github.com/repos/MovingBlocks/Terasology/statuses/873428bb9e77a5f2ff224b32b7bad10a3f085c22","head":{"label":"msteiger:water_reflections","ref":"water_reflections","sha":"873428bb9e77a5f2ff224b32b7bad10a3f085c22","user":{"login":"msteiger","id":1820007,"avatar_url":"https://avatars.githubusercontent.com/u/1820007?v=3","gravatar_id":"","url":"https://api.github.com/users/msteiger","html_url":"https://github.com/msteiger","followers_url":"https://api.github.com/users/msteiger/followers","following_url":"https://api.github.com/users/msteiger/following{/other_user}","gists_url":"https://api.github.com/users/msteiger/gists{/gist_id}","starred_url":"https://api.github.com/users/msteiger/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/msteiger/subscriptions","organizations_url":"https://api.github.com/users/msteiger/orgs","repos_url":"https://api.github.com/users/msteiger/repos","events_url":"https://api.github.com/users/msteiger/events{/privacy}","received_events_url":"https://api.github.com/users/msteiger/received_events","type":"User","site_admin":false},"repo":{"id":15682556,"name":"Terasology","full_name":"msteiger/Terasology","owner":{"login":"msteiger","id":1820007,"avatar_url":"https://avatars.githubusercontent.com/u/1820007?v=3","gravatar_id":"","url":"https://api.github.com/users/msteiger","html_url":"https://github.com/msteiger","followers_url":"https://api.github.com/users/msteiger/followers","following_url":"https://api.github.com/users/msteiger/following{/other_user}","gists_url":"https://api.github.com/users/msteiger/gists{/gist_id}","starred_url":"https://api.github.com/users/msteiger/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/msteiger/subscriptions","organizations_url":"https://api.github.com/users/msteiger/orgs","repos_url":"https://api.github.com/users/msteiger/repos","events_url":"https://api.github.com/users/msteiger/events{/privacy}","received_events_url":"https://api.github.com/users/msteiger/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/msteiger/Terasology","description":"Terasology is an open source project started by Benjamin \"begla\" Glatzel to research procedural terrain generation and efficient rendering techniques in Java using the LWJGL. The engine uses a block-based voxel-like approach as seen in Minecraft. After proving itself as a solid tech demo begla was joined at first by Anton \"small-jeeper\" Kireev and Rasmus \"Cervator\" Praestholm and a full-fledged game concept was born. Our goal is a game that pays ample tribute to Minecraft in initial look and origin, but stakes out its own niche by adopting the NPC-helper and caretaker feel from such games as Dwarf Fortress and Dungeon Keeper, while striving for added depth and sophistication in the foundation systems akin to DF.","fork":true,"url":"https://api.github.com/repos/msteiger/Terasology","forks_url":"https://api.github.com/repos/msteiger/Terasology/forks","keys_url":"https://api.github.com/repos/msteiger/Terasology/keys{/key_id}","collaborators_url":"https://api.github.com/repos/msteiger/Terasology/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/msteiger/Terasology/teams","hooks_url":"https://api.github.com/repos/msteiger/Terasology/hooks","issue_events_url":"https://api.github.com/repos/msteiger/Terasology/issues/events{/number}","events_url":"https://api.github.com/repos/msteiger/Terasology/events","assignees_url":"https://api.github.com/repos/msteiger/Terasology/assignees{/user}","branches_url":"https://api.github.com/repos/msteiger/Terasology/branches{/branch}","tags_url":"https://api.github.com/repos/msteiger/Terasology/tags","blobs_url":"https://api.github.com/repos/msteiger/Terasology/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/msteiger/Terasology/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/msteiger/Terasology/git/refs{/sha}","trees_url":"https://api.github.com/repos/msteiger/Terasology/git/trees{/sha}","statuses_url":"https://api.github.com/repos/msteiger/Terasology/statuses/{sha}","languages_url":"https://api.github.com/repos/msteiger/Terasology/languages","stargazers_url":"https://api.github.com/repos/msteiger/Terasology/stargazers","contributors_url":"https://api.github.com/repos/msteiger/Terasology/contributors","subscribers_url":"https://api.github.com/repos/msteiger/Terasology/subscribers","subscription_url":"https://api.github.com/repos/msteiger/Terasology/subscription","commits_url":"https://api.github.com/repos/msteiger/Terasology/commits{/sha}","git_commits_url":"https://api.github.com/repos/msteiger/Terasology/git/commits{/sha}","comments_url":"https://api.github.com/repos/msteiger/Terasology/comments{/number}","issue_comment_url":"https://api.github.com/repos/msteiger/Terasology/issues/comments/{number}","contents_url":"https://api.github.com/repos/msteiger/Terasology/contents/{+path}","compare_url":"https://api.github.com/repos/msteiger/Terasology/compare/{base}...{head}","merges_url":"https://api.github.com/repos/msteiger/Terasology/merges","archive_url":"https://api.github.com/repos/msteiger/Terasology/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/msteiger/Terasology/downloads","issues_url":"https://api.github.com/repos/msteiger/Terasology/issues{/number}","pulls_url":"https://api.github.com/repos/msteiger/Terasology/pulls{/number}","milestones_url":"https://api.github.com/repos/msteiger/Terasology/milestones{/number}","notifications_url":"https://api.github.com/repos/msteiger/Terasology/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/msteiger/Terasology/labels{/name}","releases_url":"https://api.github.com/repos/msteiger/Terasology/releases{/id}","created_at":"2014-01-06T19:12:52Z","updated_at":"2014-12-27T12:34:51Z","pushed_at":"2015-01-01T14:54:26Z","git_url":"git://github.com/msteiger/Terasology.git","ssh_url":"git@github.com:msteiger/Terasology.git","clone_url":"https://github.com/msteiger/Terasology.git","svn_url":"https://github.com/msteiger/Terasology","homepage":"http://terasology.org/","size":218815,"stargazers_count":1,"watchers_count":1,"language":"Java","has_issues":false,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":1,"forks":0,"open_issues":1,"watchers":1,"default_branch":"develop"}},"base":{"label":"MovingBlocks:develop","ref":"develop","sha":"9f0640d613bbb7a38e91c5227063ea827ee1434b","user":{"login":"MovingBlocks","id":1292442,"avatar_url":"https://avatars.githubusercontent.com/u/1292442?v=3","gravatar_id":"","url":"https://api.github.com/users/MovingBlocks","html_url":"https://github.com/MovingBlocks","followers_url":"https://api.github.com/users/MovingBlocks/followers","following_url":"https://api.github.com/users/MovingBlocks/following{/other_user}","gists_url":"https://api.github.com/users/MovingBlocks/gists{/gist_id}","starred_url":"https://api.github.com/users/MovingBlocks/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/MovingBlocks/subscriptions","organizations_url":"https://api.github.com/users/MovingBlocks/orgs","repos_url":"https://api.github.com/users/MovingBlocks/repos","events_url":"https://api.github.com/users/MovingBlocks/events{/privacy}","received_events_url":"https://api.github.com/users/MovingBlocks/received_events","type":"Organization","site_admin":false},"repo":{"id":1438007,"name":"Terasology","full_name":"MovingBlocks/Terasology","owner":{"login":"MovingBlocks","id":1292442,"avatar_url":"https://avatars.githubusercontent.com/u/1292442?v=3","gravatar_id":"","url":"https://api.github.com/users/MovingBlocks","html_url":"https://github.com/MovingBlocks","followers_url":"https://api.github.com/users/MovingBlocks/followers","following_url":"https://api.github.com/users/MovingBlocks/following{/other_user}","gists_url":"https://api.github.com/users/MovingBlocks/gists{/gist_id}","starred_url":"https://api.github.com/users/MovingBlocks/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/MovingBlocks/subscriptions","organizations_url":"https://api.github.com/users/MovingBlocks/orgs","repos_url":"https://api.github.com/users/MovingBlocks/repos","events_url":"https://api.github.com/users/MovingBlocks/events{/privacy}","received_events_url":"https://api.github.com/users/MovingBlocks/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/MovingBlocks/Terasology","description":"Terasology is an open source project started by Benjamin \"begla\" Glatzel to research procedural terrain generation and efficient rendering techniques in Java using the LWJGL. The engine uses a block-based voxel-like approach as seen in Minecraft. After proving itself as a solid tech demo begla was joined at first by Anton \"small-jeeper\" Kireev and Rasmus \"Cervator\" Praestholm and a full-fledged game concept was born. Our goal is a game that pays ample tribute to Minecraft in initial look and origin, but stakes out its own niche by adopting the NPC-helper and caretaker feel from such games as Dwarf Fortress and Dungeon Keeper, while striving for added depth and sophistication in the foundation systems akin to DF.","fork":false,"url":"https://api.github.com/repos/MovingBlocks/Terasology","forks_url":"https://api.github.com/repos/MovingBlocks/Terasology/forks","keys_url":"https://api.github.com/repos/MovingBlocks/Terasology/keys{/key_id}","collaborators_url":"https://api.github.com/repos/MovingBlocks/Terasology/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/MovingBlocks/Terasology/teams","hooks_url":"https://api.github.com/repos/MovingBlocks/Terasology/hooks","issue_events_url":"https://api.github.com/repos/MovingBlocks/Terasology/issues/events{/number}","events_url":"https://api.github.com/repos/MovingBlocks/Terasology/events","assignees_url":"https://api.github.com/repos/MovingBlocks/Terasology/assignees{/user}","branches_url":"https://api.github.com/repos/MovingBlocks/Terasology/branches{/branch}","tags_url":"https://api.github.com/repos/MovingBlocks/Terasology/tags","blobs_url":"https://api.github.com/repos/MovingBlocks/Terasology/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/MovingBlocks/Terasology/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/MovingBlocks/Terasology/git/refs{/sha}","trees_url":"https://api.github.com/repos/MovingBlocks/Terasology/git/trees{/sha}","statuses_url":"https://api.github.com/repos/MovingBlocks/Terasology/statuses/{sha}","languages_url":"https://api.github.com/repos/MovingBlocks/Terasology/languages","stargazers_url":"https://api.github.com/repos/MovingBlocks/Terasology/stargazers","contributors_url":"https://api.github.com/repos/MovingBlocks/Terasology/contributors","subscribers_url":"https://api.github.com/repos/MovingBlocks/Terasology/subscribers","subscription_url":"https://api.github.com/repos/MovingBlocks/Terasology/subscription","commits_url":"https://api.github.com/repos/MovingBlocks/Terasology/commits{/sha}","git_commits_url":"https://api.github.com/repos/MovingBlocks/Terasology/git/commits{/sha}","comments_url":"https://api.github.com/repos/MovingBlocks/Terasology/comments{/number}","issue_comment_url":"https://api.github.com/repos/MovingBlocks/Terasology/issues/comments/{number}","contents_url":"https://api.github.com/repos/MovingBlocks/Terasology/contents/{+path}","compare_url":"https://api.github.com/repos/MovingBlocks/Terasology/compare/{base}...{head}","merges_url":"https://api.github.com/repos/MovingBlocks/Terasology/merges","archive_url":"https://api.github.com/repos/MovingBlocks/Terasology/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/MovingBlocks/Terasology/downloads","issues_url":"https://api.github.com/repos/MovingBlocks/Terasology/issues{/number}","pulls_url":"https://api.github.com/repos/MovingBlocks/Terasology/pulls{/number}","milestones_url":"https://api.github.com/repos/MovingBlocks/Terasology/milestones{/number}","notifications_url":"https://api.github.com/repos/MovingBlocks/Terasology/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/MovingBlocks/Terasology/labels{/name}","releases_url":"https://api.github.com/repos/MovingBlocks/Terasology/releases{/id}","created_at":"2011-03-04T03:49:19Z","updated_at":"2015-01-01T13:48:59Z","pushed_at":"2015-01-01T06:41:15Z","git_url":"git://github.com/MovingBlocks/Terasology.git","ssh_url":"git@github.com:MovingBlocks/Terasology.git","clone_url":"https://github.com/MovingBlocks/Terasology.git","svn_url":"https://github.com/MovingBlocks/Terasology","homepage":"http://terasology.org/","size":275174,"stargazers_count":917,"watchers_count":917,"language":"Java","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":393,"mirror_url":null,"open_issues_count":256,"forks":393,"open_issues":256,"watchers":917,"default_branch":"develop"}},"_links":{"self":{"href":"https://api.github.com/repos/MovingBlocks/Terasology/pulls/1479"},"html":{"href":"https://github.com/MovingBlocks/Terasology/pull/1479"},"issue":{"href":"https://api.github.com/repos/MovingBlocks/Terasology/issues/1479"},"comments":{"href":"https://api.github.com/repos/MovingBlocks/Terasology/issues/1479/comments"},"review_comments":{"href":"https://api.github.com/repos/MovingBlocks/Terasology/pulls/1479/comments"},"review_comment":{"href":"https://api.github.com/repos/MovingBlocks/Terasology/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/MovingBlocks/Terasology/pulls/1479/commits"},"statuses":{"href":"https://api.github.com/repos/MovingBlocks/Terasology/statuses/873428bb9e77a5f2ff224b32b7bad10a3f085c22"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":3,"additions":180,"deletions":42,"changed_files":12}},"public":true,"created_at":"2015-01-01T15:01:39Z","org":{"id":1292442,"login":"MovingBlocks","gravatar_id":"","url":"https://api.github.com/orgs/MovingBlocks","avatar_url":"https://avatars.githubusercontent.com/u/1292442?"}}
,{"id":"2489651862","type":"PushEvent","actor":{"id":3788419,"login":"JoaoPedroPinheiro","gravatar_id":"","url":"https://api.github.com/users/JoaoPedroPinheiro","avatar_url":"https://avatars.githubusercontent.com/u/3788419?"},"repo":{"id":26856126,"name":"JoaoPedroPinheiro/laig1415","url":"https://api.github.com/repos/JoaoPedroPinheiro/laig1415"},"payload":{"push_id":536864333,"size":1,"distinct_size":1,"ref":"refs/heads/dev","head":"ffabf2fed990b762a2d9299dd066c590520c5411","before":"925ee4e51c16ecc9bed6ea64764213836c1de517","commits":[{"sha":"ffabf2fed990b762a2d9299dd066c590520c5411","author":{"email":"a72ec68c730a049adcc94a625da6f63da45bbb42@gmail.com","name":"João Pedro Pinheiro"},"message":"Board Displaying, Pieces need animation","distinct":true,"url":"https://api.github.com/repos/JoaoPedroPinheiro/laig1415/commits/ffabf2fed990b762a2d9299dd066c590520c5411"}]},"public":true,"created_at":"2015-01-01T15:01:40Z"}
,{"id":"2489651865","type":"PushEvent","actor":{"id":9381532,"login":"vatsaaa","gravatar_id":"","url":"https://api.github.com/users/vatsaaa","avatar_url":"https://avatars.githubusercontent.com/u/9381532?"},"repo":{"id":28673152,"name":"vatsaaa/mycodesnips","url":"https://api.github.com/repos/vatsaaa/mycodesnips"},"payload":{"push_id":536864335,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"4a7b8abb684c43cd6ace984534f82e612b9a20ec","before":"6c8437f7edc4665c70bcdd78749c94d03deb57f6","commits":[{"sha":"4a7b8abb684c43cd6ace984534f82e612b9a20ec","author":{"email":"be51eeb01ab0ddac52571dd736dd0fd5d13a6a37@gmail.com","name":"Gudakesh Ankur Vatsa"},"message":"Delete NumPalindrome.java","distinct":true,"url":"https://api.github.com/repos/vatsaaa/mycodesnips/commits/4a7b8abb684c43cd6ace984534f82e612b9a20ec"}]},"public":true,"created_at":"2015-01-01T15:01:40Z"}
,{"id":"2489651867","type":"WatchEvent","actor":{"id":1386930,"login":"takahirom","gravatar_id":"","url":"https://api.github.com/users/takahirom","avatar_url":"https://avatars.githubusercontent.com/u/1386930?"},"repo":{"id":24627119,"name":"xujiaao/AARLinkSources","url":"https://api.github.com/repos/xujiaao/AARLinkSources"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:01:40Z"}
,{"id":"2489651868","type":"WatchEvent","actor":{"id":143771,"login":"ollym","gravatar_id":"","url":"https://api.github.com/users/ollym","avatar_url":"https://avatars.githubusercontent.com/u/143771?"},"repo":{"id":21108956,"name":"gorhill/uBlock","url":"https://api.github.com/repos/gorhill/uBlock"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:01:40Z"}
,{"id":"2489651869","type":"PushEvent","actor":{"id":375965,"login":"silverpower","gravatar_id":"","url":"https://api.github.com/users/silverpower","avatar_url":"https://avatars.githubusercontent.com/u/375965?"},"repo":{"id":27519296,"name":"silverpower/comrade_erika","url":"https://api.github.com/repos/silverpower/comrade_erika"},"payload":{"push_id":536864337,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"1bf83925de81ac28cf3439141ed84be67a739d87","before":"796db823e89e0fe7f766d6050f5f4a99b89ffdec","commits":[{"sha":"1bf83925de81ac28cf3439141ed84be67a739d87","author":{"email":"44b9c36ece3f0f4299dd2538cf632009acf974d1@gmail.com","name":"Michelle Darcy"},"message":"MP5A2 comment indicated that it still used the 900rpm figure, which is incorrect and does not reflect the code.","distinct":true,"url":"https://api.github.com/repos/silverpower/comrade_erika/commits/1bf83925de81ac28cf3439141ed84be67a739d87"}]},"public":true,"created_at":"2015-01-01T15:01:41Z"}
,{"id":"2489651877","type":"CreateEvent","actor":{"id":2164346,"login":"kelvintaywl","gravatar_id":"","url":"https://api.github.com/users/kelvintaywl","avatar_url":"https://avatars.githubusercontent.com/u/2164346?"},"repo":{"id":28684515,"name":"wheresmybento/runningman","url":"https://api.github.com/repos/wheresmybento/runningman"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"collection of crons for Benri, because they should be running 24/7. ","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:01:43Z","org":{"id":10000177,"login":"wheresmybento","gravatar_id":"","url":"https://api.github.com/orgs/wheresmybento","avatar_url":"https://avatars.githubusercontent.com/u/10000177?"}}
,{"id":"2489651878","type":"CreateEvent","actor":{"id":201138,"login":"exuperok","gravatar_id":"","url":"https://api.github.com/users/exuperok","avatar_url":"https://avatars.githubusercontent.com/u/201138?"},"repo":{"id":28685012,"name":"exuperok/dojo_rules","url":"https://api.github.com/repos/exuperok/dojo_rules"},"payload":{"ref":"release_branch_1.0","ref_type":"branch","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:01:43Z"}
,{"id":"2489651887","type":"IssuesEvent","actor":{"id":759892,"login":"Trial-In-Error","gravatar_id":"","url":"https://api.github.com/users/Trial-In-Error","avatar_url":"https://avatars.githubusercontent.com/u/759892?"},"repo":{"id":28585802,"name":"Trial-In-Error/changes","url":"https://api.github.com/repos/Trial-In-Error/changes"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/Trial-In-Error/changes/issues/1","labels_url":"https://api.github.com/repos/Trial-In-Error/changes/issues/1/labels{/name}","comments_url":"https://api.github.com/repos/Trial-In-Error/changes/issues/1/comments","events_url":"https://api.github.com/repos/Trial-In-Error/changes/issues/1/events","html_url":"https://github.com/Trial-In-Error/changes/issues/1","id":53221367,"number":1,"title":"Wildly inefficient SRAM usage...","user":{"login":"Trial-In-Error","id":759892,"avatar_url":"https://avatars.githubusercontent.com/u/759892?v=3","gravatar_id":"","url":"https://api.github.com/users/Trial-In-Error","html_url":"https://github.com/Trial-In-Error","followers_url":"https://api.github.com/users/Trial-In-Error/followers","following_url":"https://api.github.com/users/Trial-In-Error/following{/other_user}","gists_url":"https://api.github.com/users/Trial-In-Error/gists{/gist_id}","starred_url":"https://api.github.com/users/Trial-In-Error/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Trial-In-Error/subscriptions","organizations_url":"https://api.github.com/users/Trial-In-Error/orgs","repos_url":"https://api.github.com/users/Trial-In-Error/repos","events_url":"https://api.github.com/users/Trial-In-Error/events{/privacy}","received_events_url":"https://api.github.com/users/Trial-In-Error/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:01:44Z","updated_at":"2015-01-01T15:01:44Z","closed_at":null,"body":"... each"}},"public":true,"created_at":"2015-01-01T15:01:44Z"}
,{"id":"2489651888","type":"WatchEvent","actor":{"id":3014139,"login":"velarm","gravatar_id":"","url":"https://api.github.com/users/velarm","avatar_url":"https://avatars.githubusercontent.com/u/3014139?"},"repo":{"id":17522124,"name":"HakurouKen/douban.fm-api","url":"https://api.github.com/repos/HakurouKen/douban.fm-api"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:01:44Z"}
,{"id":"2489651891","type":"PushEvent","actor":{"id":1310758,"login":"daehyeok","gravatar_id":"","url":"https://api.github.com/users/daehyeok","avatar_url":"https://avatars.githubusercontent.com/u/1310758?"},"repo":{"id":23184152,"name":"somaopensource/docker","url":"https://api.github.com/repos/somaopensource/docker"},"payload":{"push_id":536864347,"size":1,"distinct_size":1,"ref":"refs/heads/warn_graphdriver_change","head":"3c03827e73647cad27a0656ce685c8aea8ed4d21","before":"9b572e7a1a8c5a4a739f549e008bfc0062c022f4","commits":[{"sha":"3c03827e73647cad27a0656ce685c8aea8ed4d21","author":{"email":"e33dbf06c8af724c95c831251b170f514d1b4f9c@daehyeokui-MacBook-Air.local","name":"daehyeok mun"},"message":"Add warnning log when other graphdrvier(storage driver) used before\nadded warnning log when other graphdrvier(storage driver) used before for feature request #8270\n\nSigned-off-by: Daehyeok Mun <daehyeok@gmail.com>","distinct":true,"url":"https://api.github.com/repos/somaopensource/docker/commits/3c03827e73647cad27a0656ce685c8aea8ed4d21"}]},"public":true,"created_at":"2015-01-01T15:01:44Z","org":{"id":8512873,"login":"somaopensource","gravatar_id":"","url":"https://api.github.com/orgs/somaopensource","avatar_url":"https://avatars.githubusercontent.com/u/8512873?"}}
,{"id":"2489651893","type":"PushEvent","actor":{"id":824542,"login":"blakgeek","gravatar_id":"","url":"https://api.github.com/users/blakgeek","avatar_url":"https://avatars.githubusercontent.com/u/824542?"},"repo":{"id":28686224,"name":"blakgeek/flurry-phonegap-plugin","url":"https://api.github.com/repos/blakgeek/flurry-phonegap-plugin"},"payload":{"push_id":536864348,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"9f6b7865b8597795241fec507740536fe1284a7e","before":"b32ec476e8f42b7776964d05fd068da7cdfaebe1","commits":[{"sha":"9f6b7865b8597795241fec507740536fe1284a7e","author":{"email":"28eb2fb8238632feb03d778104388e3e5a97e35f@altisource.com","name":"Carlos Lawton"},"message":"Fixed bug in bool2ObjC","distinct":true,"url":"https://api.github.com/repos/blakgeek/flurry-phonegap-plugin/commits/9f6b7865b8597795241fec507740536fe1284a7e"}]},"public":true,"created_at":"2015-01-01T15:01:44Z"}
,{"id":"2489651898","type":"WatchEvent","actor":{"id":8203034,"login":"licg9999","gravatar_id":"","url":"https://api.github.com/users/licg9999","avatar_url":"https://avatars.githubusercontent.com/u/8203034?"},"repo":{"id":2626112,"name":"sickill/vim-monokai","url":"https://api.github.com/repos/sickill/vim-monokai"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:01:45Z"}
,{"id":"2489651900","type":"PushEvent","actor":{"id":1021199,"login":"piwi","gravatar_id":"","url":"https://api.github.com/users/piwi","avatar_url":"https://avatars.githubusercontent.com/u/1021199?"},"repo":{"id":9756641,"name":"atelierspierrot/assets-manager","url":"https://api.github.com/repos/atelierspierrot/assets-manager"},"payload":{"push_id":536864349,"size":33,"distinct_size":2,"ref":"refs/heads/dev","head":"99dd047459ad52dc3e59f1af3433b162420308cf","before":"97513d6494c1e1c9fca6adfd67b140ea580452e6","commits":[{"sha":"260442b4d0661494f0e5d7478c06817480d26ad3","author":{"email":"b1c1d8736f20db3fb6c1c66bb1455ed43909f0d8@e-piwi.fr","name":"Piero Wbmstr"},"message":"Avoid redundancy","distinct":false,"url":"https://api.github.com/repos/atelierspierrot/assets-manager/commits/260442b4d0661494f0e5d7478c06817480d26ad3"},{"sha":"47932ef801b7c5a11bf77ce332d83cc7496a64f8","author":{"email":"b1c1d8736f20db3fb6c1c66bb1455ed43909f0d8@e-piwi.fr","name":"Piero Wbmstr"},"message":"Avoid redundancy","distinct":false,"url":"https://api.github.com/repos/atelierspierrot/assets-manager/commits/47932ef801b7c5a11bf77ce332d83cc7496a64f8"},{"sha":"35be81f32df061b756dedb9331b684bbfd188889","author":{"email":"b1c1d8736f20db3fb6c1c66bb1455ed43909f0d8@e-piwi.fr","name":"Piero Wbmstr"},"message":"Adding methods to test if a package or a preset exists in the project","distinct":false,"url":"https://api.github.com/repos/atelierspierrot/assets-manager/commits/35be81f32df061b756dedb9331b684bbfd188889"},{"sha":"92fc99f56a59bbb2ada272427c0e954d91f132fd","author":{"email":"b1c1d8736f20db3fb6c1c66bb1455ed43909f0d8@e-piwi.fr","name":"Piero Wbmstr"},"message":"Adding methods to test if a package or a preset exists in the project","distinct":false,"url":"https://api.github.com/repos/atelierspierrot/assets-manager/commits/92fc99f56a59bbb2ada272427c0e954d91f132fd"},{"sha":"12f562616e6e7ce395f7b57f584934af219d7d49","author":{"email":"b1c1d8736f20db3fb6c1c66bb1455ed43909f0d8@e-piwi.fr","name":"Piero Wbmstr"},"message":"Renaming \"PieroWbmstr\" in lowercase","distinct":false,"url":"https://api.github.com/repos/atelierspierrot/assets-manager/commits/12f562616e6e7ce395f7b57f584934af219d7d49"},{"sha":"5fb16b545445491d35ef92a535edf3f85213a5cf","author":{"email":"b1c1d8736f20db3fb6c1c66bb1455ed43909f0d8@e-piwi.fr","name":"Piero Wbmstr"},"message":"Renaming \"PieroWbmstr\" in lowercase","distinct":false,"url":"https://api.github.com/repos/atelierspierrot/assets-manager/commits/5fb16b545445491d35ef92a535edf3f85213a5cf"},{"sha":"391a5d24f704567fe4f461569197094d4e1713a3","author":{"email":"b1c1d8736f20db3fb6c1c66bb1455ed43909f0d8@e-piwi.fr","name":"Piero Wbmstr"},"message":"new piwi github url + 2014 copyleft :(","distinct":false,"url":"https://api.github.com/repos/atelierspierrot/assets-manager/commits/391a5d24f704567fe4f461569197094d4e1713a3"},{"sha":"364f76428c13bbf82613a4d4e4f3252035b0f6f6","author":{"email":"b1c1d8736f20db3fb6c1c66bb1455ed43909f0d8@e-piwi.fr","name":"Piero Wbmstr"},"message":"new piwi github url + 2014 copyleft :(","distinct":false,"url":"https://api.github.com/repos/atelierspierrot/assets-manager/commits/364f76428c13bbf82613a4d4e4f3252035b0f6f6"},{"sha":"6e1ecdb125ad1a594dbfc9eca8f14b56fc02a765","author":{"email":"b1c1d8736f20db3fb6c1c66bb1455ed43909f0d8@e-piwi.fr","name":"Piero Wbmstr"},"message":"cleanup & sources review","distinct":false,"url":"https://api.github.com/repos/atelierspierrot/assets-manager/commits/6e1ecdb125ad1a594dbfc9eca8f14b56fc02a765"},{"sha":"68f0d2410f4536cb0b9bd9b8eef9e6c58be06d53","author":{"email":"b1c1d8736f20db3fb6c1c66bb1455ed43909f0d8@e-piwi.fr","name":"Piero Wbmstr"},"message":"cleanup & sources review","distinct":false,"url":"https://api.github.com/repos/atelierspierrot/assets-manager/commits/68f0d2410f4536cb0b9bd9b8eef9e6c58be06d53"},{"sha":"d85b119633ee5f26125535065df06aacdb8beb45","author":{"email":"b1c1d8736f20db3fb6c1c66bb1455ed43909f0d8@e-piwi.fr","name":"Piero Wbmstr"},"message":"URL of assets can now have no-protocol","distinct":false,"url":"https://api.github.com/repos/atelierspierrot/assets-manager/commits/d85b119633ee5f26125535065df06aacdb8beb45"},{"sha":"e3fcd0abf9baa01d1f463c0de175d742722f30e8","author":{"email":"b1c1d8736f20db3fb6c1c66bb1455ed43909f0d8@e-piwi.fr","name":"Piero Wbmstr"},"message":"URL of assets can now have no-protocol","distinct":false,"url":"https://api.github.com/repos/atelierspierrot/assets-manager/commits/e3fcd0abf9baa01d1f463c0de175d742722f30e8"},{"sha":"9cbe267b9397a6c25c70fdb0f072f618693f433e","author":{"email":"b1c1d8736f20db3fb6c1c66bb1455ed43909f0d8@e-piwi.fr","name":"Piero Wbmstr"},"message":"new 'last' and 'first' positional assets info","distinct":false,"url":"https://api.github.com/repos/atelierspierrot/assets-manager/commits/9cbe267b9397a6c25c70fdb0f072f618693f433e"},{"sha":"871fc9876d81b5bdec7f61330cf117f56f6822e0","author":{"email":"b1c1d8736f20db3fb6c1c66bb1455ed43909f0d8@e-piwi.fr","name":"Piero Wbmstr"},"message":"sources review + README re-writing","distinct":false,"url":"https://api.github.com/repos/atelierspierrot/assets-manager/commits/871fc9876d81b5bdec7f61330cf117f56f6822e0"},{"sha":"493fc8bf64985cf7f0eed4a251c75e3a4da0bb38","author":{"email":"b1c1d8736f20db3fb6c1c66bb1455ed43909f0d8@e-piwi.fr","name":"Piero Wbmstr"},"message":"new 'last' and 'first' positional assets info","distinct":false,"url":"https://api.github.com/repos/atelierspierrot/assets-manager/commits/493fc8bf64985cf7f0eed4a251c75e3a4da0bb38"},{"sha":"ee78b10d4e9952eb3f9dfe8f096bef275cc4fda1","author":{"email":"b1c1d8736f20db3fb6c1c66bb1455ed43909f0d8@e-piwi.fr","name":"Piero Wbmstr"},"message":"sources review + README re-writing","distinct":false,"url":"https://api.github.com/repos/atelierspierrot/assets-manager/commits/ee78b10d4e9952eb3f9dfe8f096bef275cc4fda1"},{"sha":"95c3c1b80548d753bcd383a0402f259cc562ed22","author":{"email":"b1c1d8736f20db3fb6c1c66bb1455ed43909f0d8@e-piwi.fr","name":"Piero Wbmstr"},"message":"wip with exceptions","distinct":false,"url":"https://api.github.com/repos/atelierspierrot/assets-manager/commits/95c3c1b80548d753bcd383a0402f259cc562ed22"},{"sha":"7544a43341bb7b08b9fb9ea490c9affc7a82dc70","author":{"email":"b1c1d8736f20db3fb6c1c66bb1455ed43909f0d8@e-piwi.fr","name":"Piero Wbmstr"},"message":"correction in the JSON DB generation","distinct":false,"url":"https://api.github.com/repos/atelierspierrot/assets-manager/commits/7544a43341bb7b08b9fb9ea490c9affc7a82dc70"},{"sha":"d55e491936f8883d8507d7771c6ceef25ec225c7","author":{"email":"b1c1d8736f20db3fb6c1c66bb1455ed43909f0d8@e-piwi.fr","name":"Piero Wbmstr"},"message":"working on the doc","distinct":false,"url":"https://api.github.com/repos/atelierspierrot/assets-manager/commits/d55e491936f8883d8507d7771c6ceef25ec225c7"},{"sha":"420e7f806b78d011e02ce143387aaae9913f9a1e","author":{"email":"b1c1d8736f20db3fb6c1c66bb1455ed43909f0d8@e-piwi.fr","name":"Piero Wbmstr"},"message":"correction in the JSON DB generation","distinct":false,"url":"https://api.github.com/repos/atelierspierrot/assets-manager/commits/420e7f806b78d011e02ce143387aaae9913f9a1e"}]},"public":true,"created_at":"2015-01-01T15:01:45Z","org":{"id":3798221,"login":"atelierspierrot","gravatar_id":"","url":"https://api.github.com/orgs/atelierspierrot","avatar_url":"https://avatars.githubusercontent.com/u/3798221?"}}
,{"id":"2489651902","type":"PushEvent","actor":{"id":1646422,"login":"brunocarvalhodearaujo","gravatar_id":"","url":"https://api.github.com/users/brunocarvalhodearaujo","avatar_url":"https://avatars.githubusercontent.com/u/1646422?"},"repo":{"id":28688285,"name":"brunocarvalhodearaujo/datastore","url":"https://api.github.com/repos/brunocarvalhodearaujo/datastore"},"payload":{"push_id":536864351,"size":1,"distinct_size":1,"ref":"refs/heads/0.1","head":"590d14bfd9c3b06e3d9e49355d66ed13199e800d","before":"929628eb8600ad5eaa717b6fa1b816a42cfa5ea3","commits":[{"sha":"590d14bfd9c3b06e3d9e49355d66ed13199e800d","author":{"email":"254d51cb477bb0448649802c443c6e6c2f475324@gmail.com","name":"Bruno Carvalho de Araujo"},"message":"Delete Configuration.php","distinct":true,"url":"https://api.github.com/repos/brunocarvalhodearaujo/datastore/commits/590d14bfd9c3b06e3d9e49355d66ed13199e800d"}]},"public":true,"created_at":"2015-01-01T15:01:45Z"}
,{"id":"2489651905","type":"PushEvent","actor":{"id":133691,"login":"gurunars","gravatar_id":"","url":"https://api.github.com/users/gurunars","avatar_url":"https://avatars.githubusercontent.com/u/133691?"},"repo":{"id":26864615,"name":"gurunars/gurunars.github.io","url":"https://api.github.com/repos/gurunars/gurunars.github.io"},"payload":{"push_id":536864354,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"b747ea81bd2e80c6381e0aae3c19e11ca147a27f","before":"edca0272121f8478d1cc4ef43e8ea9505c126921","commits":[{"sha":"b747ea81bd2e80c6381e0aae3c19e11ca147a27f","author":{"email":"2bae8075423fd09d34532d5328ba3cbe924763f0@gmail.com","name":"Anton Berezin"},"message":"Blog posts width","distinct":true,"url":"https://api.github.com/repos/gurunars/gurunars.github.io/commits/b747ea81bd2e80c6381e0aae3c19e11ca147a27f"}]},"public":true,"created_at":"2015-01-01T15:01:46Z"}
,{"id":"2489651906","type":"PushEvent","actor":{"id":1354987,"login":"d3rp","gravatar_id":"","url":"https://api.github.com/users/d3rp","avatar_url":"https://avatars.githubusercontent.com/u/1354987?"},"repo":{"id":28688529,"name":"d3rp/ansible-modules-core","url":"https://api.github.com/repos/d3rp/ansible-modules-core"},"payload":{"push_id":536864355,"size":1,"distinct_size":1,"ref":"refs/heads/devel","head":"21fedc87f1cff5daf87f28617857106718f9174a","before":"0d551d8d245e060e453cfdcd608eeca595efe760","commits":[{"sha":"21fedc87f1cff5daf87f28617857106718f9174a","author":{"email":"c8e45a5fcfadb8a5f04f88654f9e4152c16dd7b9@yandex-team.ru","name":"Andrey Trubachev"},"message":"Add support ipv6only to wait_for","distinct":true,"url":"https://api.github.com/repos/d3rp/ansible-modules-core/commits/21fedc87f1cff5daf87f28617857106718f9174a"}]},"public":true,"created_at":"2015-01-01T15:01:46Z"}
,{"id":"2489651909","type":"PushEvent","actor":{"id":174631,"login":"vincenthz","gravatar_id":"","url":"https://api.github.com/users/vincenthz","avatar_url":"https://avatars.githubusercontent.com/u/174631?"},"repo":{"id":23581485,"name":"vincenthz/hs-scraps","url":"https://api.github.com/repos/vincenthz/hs-scraps"},"payload":{"push_id":536864357,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"8717c51de474688a7a79710f22f6b33d9925a4fd","before":"66cffd26b61db19231aa143dd9161bfd596f7e81","commits":[{"sha":"e975d6595a92e510dfb21c2b50a6eb0af3a8f203","author":{"email":"87e1f221a672a14a323e57bb65eaea19d3ed3804@snarc.org","name":"Vincent Hanquez"},"message":"add simple String templating","distinct":true,"url":"https://api.github.com/repos/vincenthz/hs-scraps/commits/e975d6595a92e510dfb21c2b50a6eb0af3a8f203"},{"sha":"8717c51de474688a7a79710f22f6b33d9925a4fd","author":{"email":"87e1f221a672a14a323e57bb65eaea19d3ed3804@snarc.org","name":"Vincent Hanquez"},"message":"add .gitignore","distinct":true,"url":"https://api.github.com/repos/vincenthz/hs-scraps/commits/8717c51de474688a7a79710f22f6b33d9925a4fd"}]},"public":true,"created_at":"2015-01-01T15:01:46Z"}
,{"id":"2489651910","type":"PushEvent","actor":{"id":8683432,"login":"wkcool","gravatar_id":"","url":"https://api.github.com/users/wkcool","avatar_url":"https://avatars.githubusercontent.com/u/8683432?"},"repo":{"id":27059641,"name":"wkcool/wkcool.github.com","url":"https://api.github.com/repos/wkcool/wkcool.github.com"},"payload":{"push_id":536864358,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"bb0fa257b0502ac3fdfdf322611a0539d909c1ad","before":"4ce104ec7d1ce0c8dd241f2fc6aacf95dd6b3080","commits":[{"sha":"bb0fa257b0502ac3fdfdf322611a0539d909c1ad","author":{"email":"ddd2d39a843d8ae129b2e2fc6f13669f44116bd1@gmail.com","name":"wenkrcool"},"message":"提交","distinct":true,"url":"https://api.github.com/repos/wkcool/wkcool.github.com/commits/bb0fa257b0502ac3fdfdf322611a0539d909c1ad"}]},"public":true,"created_at":"2015-01-01T15:01:46Z"}
,{"id":"2489651912","type":"PushEvent","actor":{"id":1193284,"login":"bborbe","gravatar_id":"","url":"https://api.github.com/users/bborbe","avatar_url":"https://avatars.githubusercontent.com/u/1193284?"},"repo":{"id":24144832,"name":"bborbe/prototype","url":"https://api.github.com/repos/bborbe/prototype"},"payload":{"push_id":536864359,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"3b3ee511299e853c7ff26a549d96a408a3810711","before":"c71d996a270cad114542708d7358b40cb5afcc70","commits":[{"sha":"3b3ee511299e853c7ff26a549d96a408a3810711","author":{"email":"b433cf2733348698e7263ccfc3f315729d23acc5@rocketnews.de","name":"Benjamin Borbe"},"message":"update doc","distinct":true,"url":"https://api.github.com/repos/bborbe/prototype/commits/3b3ee511299e853c7ff26a549d96a408a3810711"}]},"public":true,"created_at":"2015-01-01T15:01:46Z"}
,{"id":"2489651915","type":"PushEvent","actor":{"id":2395320,"login":"khcr","gravatar_id":"","url":"https://api.github.com/users/khcr","avatar_url":"https://avatars.githubusercontent.com/u/2395320?"},"repo":{"id":27841861,"name":"khcr/coursesApp-doc","url":"https://api.github.com/repos/khcr/coursesApp-doc"},"payload":{"push_id":536864360,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"cdf7720d862a8e9f51a17faa6b63af8643e5dfff","before":"09033851d6cbc8f2c1a3056246889f6ca59bfdbb","commits":[{"sha":"f1d3f79b11e833d82ad9ac171449eeadce764277","author":{"email":"418e0f92c35f71155842bf8dd29d9dea8112e134@gmail.com","name":"khcr"},"message":"models","distinct":true,"url":"https://api.github.com/repos/khcr/coursesApp-doc/commits/f1d3f79b11e833d82ad9ac171449eeadce764277"},{"sha":"cdf7720d862a8e9f51a17faa6b63af8643e5dfff","author":{"email":"418e0f92c35f71155842bf8dd29d9dea8112e134@gmail.com","name":"khcr"},"message":"doctree","distinct":true,"url":"https://api.github.com/repos/khcr/coursesApp-doc/commits/cdf7720d862a8e9f51a17faa6b63af8643e5dfff"}]},"public":true,"created_at":"2015-01-01T15:01:47Z"}
,{"id":"2489651919","type":"PushEvent","actor":{"id":795866,"login":"Tonvin","gravatar_id":"","url":"https://api.github.com/users/Tonvin","avatar_url":"https://avatars.githubusercontent.com/u/795866?"},"repo":{"id":6069920,"name":"Tonvin/oh-my-zsh","url":"https://api.github.com/repos/Tonvin/oh-my-zsh"},"payload":{"push_id":536864363,"size":283,"distinct_size":283,"ref":"refs/heads/master","head":"224ea579d2db60f14b433f863996b1007585c028","before":"362daaa3078821e84e1c4c2eacaebdb0ae9d1f53","commits":[{"sha":"fdb3c0e68d36d20d1b75163755d568d42def5ac1","author":{"email":"f655be99d40b355fe9a8ebbf7f9e2442b0ee3e88@antone-3.desktop.amazon.com","name":"Anton Eicher"},"message":"Added check for .git directory in current, before wasting time querying git. This saves seconds on my pc.","distinct":true,"url":"https://api.github.com/repos/Tonvin/oh-my-zsh/commits/fdb3c0e68d36d20d1b75163755d568d42def5ac1"},{"sha":"9674a96b5bc296a767c2560757626bf2bc3a9ad3","author":{"email":"86a8c2da8527a1c6978bdca6d7986fe14ae147fe@openminds.be","name":"Frank Louwers"},"message":"[pj-plugin] delete ugly ls -l | awk print $9 thing to use something not depending on date format + add support for projects with spaces in them","distinct":true,"url":"https://api.github.com/repos/Tonvin/oh-my-zsh/commits/9674a96b5bc296a767c2560757626bf2bc3a9ad3"},{"sha":"df67f2ee30dbad61117e1886b0a4de326cb6daf7","author":{"email":"86a8c2da8527a1c6978bdca6d7986fe14ae147fe@openminds.be","name":"Frank Louwers"},"message":"[pj-plugin] avoid using basename. migth be (a lot?) faster","distinct":true,"url":"https://api.github.com/repos/Tonvin/oh-my-zsh/commits/df67f2ee30dbad61117e1886b0a4de326cb6daf7"},{"sha":"a7c88c988a4be02b8883c06e57c6eb290c8fcb21","author":{"email":"74cb737ea0c60952e9dfa2f3ae3c9bdaf2fbf5b8@fakedomain.com","name":"Fräntz Miccoli"},"message":"Removed comments and other elements that might appear in the phing -l output. The current version doesn't work at all on my environment (OSX 10.7)","distinct":true,"url":"https://api.github.com/repos/Tonvin/oh-my-zsh/commits/a7c88c988a4be02b8883c06e57c6eb290c8fcb21"},{"sha":"244533320062afd470e4aa6aab92e1532cf2fec3","author":{"email":"608e01334f5575f10813efa40ce0102f2dc0a75e@rimenes.net","name":"Rimenes Ribeiro"},"message":"Add reload and status alises to postgres","distinct":true,"url":"https://api.github.com/repos/Tonvin/oh-my-zsh/commits/244533320062afd470e4aa6aab92e1532cf2fec3"},{"sha":"d608fbfc7fcabf9994f8064e67670e69130d2ee1","author":{"email":"bc3107fce01cd702eb1f5e5569cda6c9eda291d3@antevorte.org","name":"Riyad Preukschas"},"message":"Make the virtualenv plugin themable","distinct":true,"url":"https://api.github.com/repos/Tonvin/oh-my-zsh/commits/d608fbfc7fcabf9994f8064e67670e69130d2ee1"},{"sha":"9b811fb625c03c30a766191cdf65a1c7c1fd96b2","author":{"email":"53787c78f7abb21ac0a50b247d81737fa8600e52@coxinc.com","name":"Michael Orr"},"message":"accidentally blew away a git config setting used for another purpose, renaming in order to distinguish","distinct":true,"url":"https://api.github.com/repos/Tonvin/oh-my-zsh/commits/9b811fb625c03c30a766191cdf65a1c7c1fd96b2"},{"sha":"3976b93f3931a7ebc913576015ff395dcd495d95","author":{"email":"15ba641c8248aa8478f5c94808a2b37cac29d592@gmail.com","name":"Daniel Farrell"},"message":"Fixed which output at each new shell creation","distinct":true,"url":"https://api.github.com/repos/Tonvin/oh-my-zsh/commits/3976b93f3931a7ebc913576015ff395dcd495d95"},{"sha":"b2ce306c4f49ebb1ef2bde5b86d553ce6ea674aa","author":{"email":"15ba641c8248aa8478f5c94808a2b37cac29d592@gmail.com","name":"Daniel Farrell"},"message":"Simplified gallois RPS1 setup using some helpful scripts","distinct":true,"url":"https://api.github.com/repos/Tonvin/oh-my-zsh/commits/b2ce306c4f49ebb1ef2bde5b86d553ce6ea674aa"},{"sha":"b2ea7d3ec12152ab4d864c27c33d8b9396c68858","author":{"email":"c8cd21269bed0b1e5226ce25d7435eabcbcca136@ya.ru","name":"Stanislav Schultz"},"message":"Add Ruby 2.1.1 support to rvm plugin","distinct":true,"url":"https://api.github.com/repos/Tonvin/oh-my-zsh/commits/b2ea7d3ec12152ab4d864c27c33d8b9396c68858"},{"sha":"73bf940c34fe359c27031a1144237ccaad7d2b9b","author":{"email":"092e29cd37ae31b9f9560115d5e4f6fc4b538e90@users.noreply.github.com","name":"Nicolas Brousse"},"message":"Update brew.plugin.zsh","distinct":true,"url":"https://api.github.com/repos/Tonvin/oh-my-zsh/commits/73bf940c34fe359c27031a1144237ccaad7d2b9b"},{"sha":"3c485db8c73bfebf379f3e9382eb8f300b608bd8","author":{"email":"cbb7353e6d953ef360baf960c122346276c6e320@walther-online.ch","name":"r3dDoX"},"message":"replaced hardcoded origin/{branch-name} with @{upstream} which gets the upstream branch since git 1.7.0","distinct":true,"url":"https://api.github.com/repos/Tonvin/oh-my-zsh/commits/3c485db8c73bfebf379f3e9382eb8f300b608bd8"},{"sha":"59c8fcc712556a4c0b612898073e212877c21d60","author":{"email":"cbb7353e6d953ef360baf960c122346276c6e320@walther-online.ch","name":"r3dDoX"},"message":"added new function to get number of commits ahead of remote","distinct":true,"url":"https://api.github.com/repos/Tonvin/oh-my-zsh/commits/59c8fcc712556a4c0b612898073e212877c21d60"},{"sha":"514693125b12d4b4cd099dcb09174f7bfd9a5b0e","author":{"email":"1cd56a53740f8484de72ec3f48b0077a503c1116@users.noreply.github.com","name":"r3dDoX"},"message":"added prefix/suffix variable for customizability","distinct":true,"url":"https://api.github.com/repos/Tonvin/oh-my-zsh/commits/514693125b12d4b4cd099dcb09174f7bfd9a5b0e"},{"sha":"b7f51bbbdd9f0d9ff9ef59b559e91b916d53cdf1","author":{"email":"81e1191ab7dc196fb9496172ecb9eca90e942252@gmail.com","name":"Josh Datko"},"message":"Adds itunes vol command.\n\nAdds itunes vol, which takes an argument from 0 to 100 to set the\nvolume from the shell.","distinct":true,"url":"https://api.github.com/repos/Tonvin/oh-my-zsh/commits/b7f51bbbdd9f0d9ff9ef59b559e91b916d53cdf1"},{"sha":"bce74975d055529cbd186782e2fd99e6da840460","author":{"email":"86a8c2da8527a1c6978bdca6d7986fe14ae147fe@openminds.be","name":"Frank Louwers"},"message":"drop the foreach, make it even shorter. thanks Marc Cornellà!","distinct":true,"url":"https://api.github.com/repos/Tonvin/oh-my-zsh/commits/bce74975d055529cbd186782e2fd99e6da840460"},{"sha":"9c11202fde61bf3db6755f4083c320d710fe3bd5","author":{"email":"74cb737ea0c60952e9dfa2f3ae3c9bdaf2fbf5b8@gmail.com","name":"frantzmiccoli"},"message":"fix `-nt` usage","distinct":true,"url":"https://api.github.com/repos/Tonvin/oh-my-zsh/commits/9c11202fde61bf3db6755f4083c320d710fe3bd5"},{"sha":"45b61297113c7c2d2cb0eeb80537c8fa944865df","author":{"email":"454dedb4ae30b0d82977a9020d5adbfa85c32a1a@gmail.com","name":"willmendesneto"},"message":"Add new plugin: \"frontend-search\"","distinct":true,"url":"https://api.github.com/repos/Tonvin/oh-my-zsh/commits/45b61297113c7c2d2cb0eeb80537c8fa944865df"},{"sha":"480ca2205846426c04fa46fb37e1f7246bba2b88","author":{"email":"6d82ba7aad82f88f215a2f0adf540efc9ac3974f@rausch.io","name":"Helge Rausch"},"message":"Make bundler plugin run binstubbed cmd if existing","distinct":true,"url":"https://api.github.com/repos/Tonvin/oh-my-zsh/commits/480ca2205846426c04fa46fb37e1f7246bba2b88"},{"sha":"14ebcc83bec267859e2948f36f48cc69f5150def","author":{"email":"73675debcd8a436be48ec22211dcf44fe0df0a64@sommerlaune.com","name":"Ben Zörb"},"message":"#2893 generalized symfony2 console directory","distinct":true,"url":"https://api.github.com/repos/Tonvin/oh-my-zsh/commits/14ebcc83bec267859e2948f36f48cc69f5150def"}]},"public":true,"created_at":"2015-01-01T15:01:48Z"}
,{"id":"2489651920","type":"PushEvent","actor":{"id":4656060,"login":"MattisLind","gravatar_id":"","url":"https://api.github.com/users/MattisLind","avatar_url":"https://avatars.githubusercontent.com/u/4656060?"},"repo":{"id":17089703,"name":"MattisLind/PC04Reader","url":"https://api.github.com/repos/MattisLind/PC04Reader"},"payload":{"push_id":536864364,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"c66cd688f9068041b0a0dbff50866b287913955d","before":"dc1c92904c42f79b6d2f89869dcb0c1720a11809","commits":[{"sha":"c66cd688f9068041b0a0dbff50866b287913955d","author":{"email":"89ffbeb444c8a68b0b8a69d0bebfc9f52a8a3aef@mattisborgen.se","name":"Mattis Lind"},"message":"Fixed spelling","distinct":true,"url":"https://api.github.com/repos/MattisLind/PC04Reader/commits/c66cd688f9068041b0a0dbff50866b287913955d"}]},"public":true,"created_at":"2015-01-01T15:01:48Z"}
,{"id":"2489651921","type":"PushEvent","actor":{"id":3990778,"login":"buptjz","gravatar_id":"","url":"https://api.github.com/users/buptjz","avatar_url":"https://avatars.githubusercontent.com/u/3990778?"},"repo":{"id":27714948,"name":"buptjz/Pixel","url":"https://api.github.com/repos/buptjz/Pixel"},"payload":{"push_id":536864365,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"c22e54dce9ee06ce06dda79fa45e3c2f72217c8b","before":"08023cd69895182a23935fcc79c93f05e6c570ef","commits":[{"sha":"c22e54dce9ee06ce06dda79fa45e3c2f72217c8b","author":{"email":"317c7c1ef217b4f2ad35892adef9a57fafb97e07@gmail.com","name":"buptjz"},"message":"图像分割 bug fix","distinct":true,"url":"https://api.github.com/repos/buptjz/Pixel/commits/c22e54dce9ee06ce06dda79fa45e3c2f72217c8b"}]},"public":true,"created_at":"2015-01-01T15:01:48Z"}
,{"id":"2489651922","type":"CreateEvent","actor":{"id":7732667,"login":"lihechao","gravatar_id":"","url":"https://api.github.com/users/lihechao","avatar_url":"https://avatars.githubusercontent.com/u/7732667?"},"repo":{"id":28688622,"name":"lihechao/pl0Compiler","url":"https://api.github.com/repos/lihechao/pl0Compiler"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"高级PL0编译器","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:01:48Z"}
,{"id":"2489651923","type":"PushEvent","actor":{"id":10358743,"login":"weshellnet","gravatar_id":"","url":"https://api.github.com/users/weshellnet","avatar_url":"https://avatars.githubusercontent.com/u/10358743?"},"repo":{"id":28670754,"name":"weshellnet/weshellnet.github.io","url":"https://api.github.com/repos/weshellnet/weshellnet.github.io"},"payload":{"push_id":536864367,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"daadbac2241068c039f396a0e8ddb8e04409e10a","before":"0c2b7598f4eb17d96f5be15968e4ac4f9aa5a501","commits":[{"sha":"79d4843685b4e74d81c5d7c48afc5fc00d594399","author":{"email":"197afcde7a19cfc6854f5986f09cef0e7ba62fa2@qq.com","name":"weshell"},"message":"First commit","distinct":true,"url":"https://api.github.com/repos/weshellnet/weshellnet.github.io/commits/79d4843685b4e74d81c5d7c48afc5fc00d594399"},{"sha":"daadbac2241068c039f396a0e8ddb8e04409e10a","author":{"email":"197afcde7a19cfc6854f5986f09cef0e7ba62fa2@qq.com","name":"weshell"},"message":"Site updated: 2015-01-01 23:05:10","distinct":true,"url":"https://api.github.com/repos/weshellnet/weshellnet.github.io/commits/daadbac2241068c039f396a0e8ddb8e04409e10a"}]},"public":true,"created_at":"2015-01-01T15:01:48Z"}
,{"id":"2489651927","type":"PushEvent","actor":{"id":814471,"login":"swegener","gravatar_id":"","url":"https://api.github.com/users/swegener","avatar_url":"https://avatars.githubusercontent.com/u/814471?"},"repo":{"id":17971324,"name":"swegener/gentoo-portage","url":"https://api.github.com/repos/swegener/gentoo-portage"},"payload":{"push_id":536864369,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"edb4e41a724a34a4e0b58b54edddb31ccc922139","before":"dc9523c06a0a520843301eacdb6ff92ba2458f99","commits":[{"sha":"edb4e41a724a34a4e0b58b54edddb31ccc922139","author":{"email":"18dc2ed701c57df81c0b5498c13767c232eb398f@stealer.net","name":"Sven Wegener"},"message":"2015-01-01 14:36:52+00:00","distinct":true,"url":"https://api.github.com/repos/swegener/gentoo-portage/commits/edb4e41a724a34a4e0b58b54edddb31ccc922139"}]},"public":true,"created_at":"2015-01-01T15:01:50Z"}
,{"id":"2489651929","type":"PushEvent","actor":{"id":5811682,"login":"jokeewu","gravatar_id":"","url":"https://api.github.com/users/jokeewu","avatar_url":"https://avatars.githubusercontent.com/u/5811682?"},"repo":{"id":25424948,"name":"jokeewu/jokeewu.github.io","url":"https://api.github.com/repos/jokeewu/jokeewu.github.io"},"payload":{"push_id":536864370,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"968cb1d327adfbc61729e05ea40a3429c5e81280","before":"0c978c76f53155fc4e85d5744c645d19fd25c963","commits":[{"sha":"968cb1d327adfbc61729e05ea40a3429c5e81280","author":{"email":"9ac84f80f312592975c27c1b1c9a6611a52edaf1@gmail.com","name":"jokee"},"message":"test","distinct":true,"url":"https://api.github.com/repos/jokeewu/jokeewu.github.io/commits/968cb1d327adfbc61729e05ea40a3429c5e81280"}]},"public":true,"created_at":"2015-01-01T15:01:51Z"}
,{"id":"2489651936","type":"PullRequestEvent","actor":{"id":10357835,"login":"mevlan","gravatar_id":"","url":"https://api.github.com/users/mevlan","avatar_url":"https://avatars.githubusercontent.com/u/10357835?"},"repo":{"id":28668460,"name":"mevlan/script","url":"https://api.github.com/repos/mevlan/script"},"payload":{"action":"closed","number":3,"pull_request":{"url":"https://api.github.com/repos/mevlan/script/pulls/3","id":26743766,"html_url":"https://github.com/mevlan/script/pull/3","diff_url":"https://github.com/mevlan/script/pull/3.diff","patch_url":"https://github.com/mevlan/script/pull/3.patch","issue_url":"https://api.github.com/repos/mevlan/script/issues/3","number":3,"state":"closed","locked":false,"title":"final function","user":{"login":"mevlan","id":10357835,"avatar_url":"https://avatars.githubusercontent.com/u/10357835?v=3","gravatar_id":"","url":"https://api.github.com/users/mevlan","html_url":"https://github.com/mevlan","followers_url":"https://api.github.com/users/mevlan/followers","following_url":"https://api.github.com/users/mevlan/following{/other_user}","gists_url":"https://api.github.com/users/mevlan/gists{/gist_id}","starred_url":"https://api.github.com/users/mevlan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mevlan/subscriptions","organizations_url":"https://api.github.com/users/mevlan/orgs","repos_url":"https://api.github.com/users/mevlan/repos","events_url":"https://api.github.com/users/mevlan/events{/privacy}","received_events_url":"https://api.github.com/users/mevlan/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:00:07Z","updated_at":"2015-01-01T15:01:53Z","closed_at":"2015-01-01T15:01:53Z","merged_at":"2015-01-01T15:01:53Z","merge_commit_sha":"563aa7776a6bcc6b497a2ffc200809197d2db733","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/mevlan/script/pulls/3/commits","review_comments_url":"https://api.github.com/repos/mevlan/script/pulls/3/comments","review_comment_url":"https://api.github.com/repos/mevlan/script/pulls/comments/{number}","comments_url":"https://api.github.com/repos/mevlan/script/issues/3/comments","statuses_url":"https://api.github.com/repos/mevlan/script/statuses/5cd1712df72a79bccdebfe073d82224404871fac","head":{"label":"mevlan:final","ref":"final","sha":"5cd1712df72a79bccdebfe073d82224404871fac","user":{"login":"mevlan","id":10357835,"avatar_url":"https://avatars.githubusercontent.com/u/10357835?v=3","gravatar_id":"","url":"https://api.github.com/users/mevlan","html_url":"https://github.com/mevlan","followers_url":"https://api.github.com/users/mevlan/followers","following_url":"https://api.github.com/users/mevlan/following{/other_user}","gists_url":"https://api.github.com/users/mevlan/gists{/gist_id}","starred_url":"https://api.github.com/users/mevlan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mevlan/subscriptions","organizations_url":"https://api.github.com/users/mevlan/orgs","repos_url":"https://api.github.com/users/mevlan/repos","events_url":"https://api.github.com/users/mevlan/events{/privacy}","received_events_url":"https://api.github.com/users/mevlan/received_events","type":"User","site_admin":false},"repo":{"id":28668460,"name":"script","full_name":"mevlan/script","owner":{"login":"mevlan","id":10357835,"avatar_url":"https://avatars.githubusercontent.com/u/10357835?v=3","gravatar_id":"","url":"https://api.github.com/users/mevlan","html_url":"https://github.com/mevlan","followers_url":"https://api.github.com/users/mevlan/followers","following_url":"https://api.github.com/users/mevlan/following{/other_user}","gists_url":"https://api.github.com/users/mevlan/gists{/gist_id}","starred_url":"https://api.github.com/users/mevlan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mevlan/subscriptions","organizations_url":"https://api.github.com/users/mevlan/orgs","repos_url":"https://api.github.com/users/mevlan/repos","events_url":"https://api.github.com/users/mevlan/events{/privacy}","received_events_url":"https://api.github.com/users/mevlan/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/mevlan/script","description":"","fork":false,"url":"https://api.github.com/repos/mevlan/script","forks_url":"https://api.github.com/repos/mevlan/script/forks","keys_url":"https://api.github.com/repos/mevlan/script/keys{/key_id}","collaborators_url":"https://api.github.com/repos/mevlan/script/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/mevlan/script/teams","hooks_url":"https://api.github.com/repos/mevlan/script/hooks","issue_events_url":"https://api.github.com/repos/mevlan/script/issues/events{/number}","events_url":"https://api.github.com/repos/mevlan/script/events","assignees_url":"https://api.github.com/repos/mevlan/script/assignees{/user}","branches_url":"https://api.github.com/repos/mevlan/script/branches{/branch}","tags_url":"https://api.github.com/repos/mevlan/script/tags","blobs_url":"https://api.github.com/repos/mevlan/script/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/mevlan/script/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/mevlan/script/git/refs{/sha}","trees_url":"https://api.github.com/repos/mevlan/script/git/trees{/sha}","statuses_url":"https://api.github.com/repos/mevlan/script/statuses/{sha}","languages_url":"https://api.github.com/repos/mevlan/script/languages","stargazers_url":"https://api.github.com/repos/mevlan/script/stargazers","contributors_url":"https://api.github.com/repos/mevlan/script/contributors","subscribers_url":"https://api.github.com/repos/mevlan/script/subscribers","subscription_url":"https://api.github.com/repos/mevlan/script/subscription","commits_url":"https://api.github.com/repos/mevlan/script/commits{/sha}","git_commits_url":"https://api.github.com/repos/mevlan/script/git/commits{/sha}","comments_url":"https://api.github.com/repos/mevlan/script/comments{/number}","issue_comment_url":"https://api.github.com/repos/mevlan/script/issues/comments/{number}","contents_url":"https://api.github.com/repos/mevlan/script/contents/{+path}","compare_url":"https://api.github.com/repos/mevlan/script/compare/{base}...{head}","merges_url":"https://api.github.com/repos/mevlan/script/merges","archive_url":"https://api.github.com/repos/mevlan/script/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/mevlan/script/downloads","issues_url":"https://api.github.com/repos/mevlan/script/issues{/number}","pulls_url":"https://api.github.com/repos/mevlan/script/pulls{/number}","milestones_url":"https://api.github.com/repos/mevlan/script/milestones{/number}","notifications_url":"https://api.github.com/repos/mevlan/script/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/mevlan/script/labels{/name}","releases_url":"https://api.github.com/repos/mevlan/script/releases{/id}","created_at":"2014-12-31T15:07:24Z","updated_at":"2015-01-01T13:45:43Z","pushed_at":"2015-01-01T15:01:53Z","git_url":"git://github.com/mevlan/script.git","ssh_url":"git@github.com:mevlan/script.git","clone_url":"https://github.com/mevlan/script.git","svn_url":"https://github.com/mevlan/script","homepage":null,"size":0,"stargazers_count":0,"watchers_count":0,"language":"Python","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master"}},"base":{"label":"mevlan:master","ref":"master","sha":"37c36e72ff50a69ac6158eb9695352a9b14a15f5","user":{"login":"mevlan","id":10357835,"avatar_url":"https://avatars.githubusercontent.com/u/10357835?v=3","gravatar_id":"","url":"https://api.github.com/users/mevlan","html_url":"https://github.com/mevlan","followers_url":"https://api.github.com/users/mevlan/followers","following_url":"https://api.github.com/users/mevlan/following{/other_user}","gists_url":"https://api.github.com/users/mevlan/gists{/gist_id}","starred_url":"https://api.github.com/users/mevlan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mevlan/subscriptions","organizations_url":"https://api.github.com/users/mevlan/orgs","repos_url":"https://api.github.com/users/mevlan/repos","events_url":"https://api.github.com/users/mevlan/events{/privacy}","received_events_url":"https://api.github.com/users/mevlan/received_events","type":"User","site_admin":false},"repo":{"id":28668460,"name":"script","full_name":"mevlan/script","owner":{"login":"mevlan","id":10357835,"avatar_url":"https://avatars.githubusercontent.com/u/10357835?v=3","gravatar_id":"","url":"https://api.github.com/users/mevlan","html_url":"https://github.com/mevlan","followers_url":"https://api.github.com/users/mevlan/followers","following_url":"https://api.github.com/users/mevlan/following{/other_user}","gists_url":"https://api.github.com/users/mevlan/gists{/gist_id}","starred_url":"https://api.github.com/users/mevlan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mevlan/subscriptions","organizations_url":"https://api.github.com/users/mevlan/orgs","repos_url":"https://api.github.com/users/mevlan/repos","events_url":"https://api.github.com/users/mevlan/events{/privacy}","received_events_url":"https://api.github.com/users/mevlan/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/mevlan/script","description":"","fork":false,"url":"https://api.github.com/repos/mevlan/script","forks_url":"https://api.github.com/repos/mevlan/script/forks","keys_url":"https://api.github.com/repos/mevlan/script/keys{/key_id}","collaborators_url":"https://api.github.com/repos/mevlan/script/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/mevlan/script/teams","hooks_url":"https://api.github.com/repos/mevlan/script/hooks","issue_events_url":"https://api.github.com/repos/mevlan/script/issues/events{/number}","events_url":"https://api.github.com/repos/mevlan/script/events","assignees_url":"https://api.github.com/repos/mevlan/script/assignees{/user}","branches_url":"https://api.github.com/repos/mevlan/script/branches{/branch}","tags_url":"https://api.github.com/repos/mevlan/script/tags","blobs_url":"https://api.github.com/repos/mevlan/script/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/mevlan/script/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/mevlan/script/git/refs{/sha}","trees_url":"https://api.github.com/repos/mevlan/script/git/trees{/sha}","statuses_url":"https://api.github.com/repos/mevlan/script/statuses/{sha}","languages_url":"https://api.github.com/repos/mevlan/script/languages","stargazers_url":"https://api.github.com/repos/mevlan/script/stargazers","contributors_url":"https://api.github.com/repos/mevlan/script/contributors","subscribers_url":"https://api.github.com/repos/mevlan/script/subscribers","subscription_url":"https://api.github.com/repos/mevlan/script/subscription","commits_url":"https://api.github.com/repos/mevlan/script/commits{/sha}","git_commits_url":"https://api.github.com/repos/mevlan/script/git/commits{/sha}","comments_url":"https://api.github.com/repos/mevlan/script/comments{/number}","issue_comment_url":"https://api.github.com/repos/mevlan/script/issues/comments/{number}","contents_url":"https://api.github.com/repos/mevlan/script/contents/{+path}","compare_url":"https://api.github.com/repos/mevlan/script/compare/{base}...{head}","merges_url":"https://api.github.com/repos/mevlan/script/merges","archive_url":"https://api.github.com/repos/mevlan/script/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/mevlan/script/downloads","issues_url":"https://api.github.com/repos/mevlan/script/issues{/number}","pulls_url":"https://api.github.com/repos/mevlan/script/pulls{/number}","milestones_url":"https://api.github.com/repos/mevlan/script/milestones{/number}","notifications_url":"https://api.github.com/repos/mevlan/script/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/mevlan/script/labels{/name}","releases_url":"https://api.github.com/repos/mevlan/script/releases{/id}","created_at":"2014-12-31T15:07:24Z","updated_at":"2015-01-01T13:45:43Z","pushed_at":"2015-01-01T15:01:53Z","git_url":"git://github.com/mevlan/script.git","ssh_url":"git@github.com:mevlan/script.git","clone_url":"https://github.com/mevlan/script.git","svn_url":"https://github.com/mevlan/script","homepage":null,"size":0,"stargazers_count":0,"watchers_count":0,"language":"Python","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/mevlan/script/pulls/3"},"html":{"href":"https://github.com/mevlan/script/pull/3"},"issue":{"href":"https://api.github.com/repos/mevlan/script/issues/3"},"comments":{"href":"https://api.github.com/repos/mevlan/script/issues/3/comments"},"review_comments":{"href":"https://api.github.com/repos/mevlan/script/pulls/3/comments"},"review_comment":{"href":"https://api.github.com/repos/mevlan/script/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/mevlan/script/pulls/3/commits"},"statuses":{"href":"https://api.github.com/repos/mevlan/script/statuses/5cd1712df72a79bccdebfe073d82224404871fac"}},"merged":true,"mergeable":null,"mergeable_state":"unknown","merged_by":{"login":"mevlan","id":10357835,"avatar_url":"https://avatars.githubusercontent.com/u/10357835?v=3","gravatar_id":"","url":"https://api.github.com/users/mevlan","html_url":"https://github.com/mevlan","followers_url":"https://api.github.com/users/mevlan/followers","following_url":"https://api.github.com/users/mevlan/following{/other_user}","gists_url":"https://api.github.com/users/mevlan/gists{/gist_id}","starred_url":"https://api.github.com/users/mevlan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mevlan/subscriptions","organizations_url":"https://api.github.com/users/mevlan/orgs","repos_url":"https://api.github.com/users/mevlan/repos","events_url":"https://api.github.com/users/mevlan/events{/privacy}","received_events_url":"https://api.github.com/users/mevlan/received_events","type":"User","site_admin":false},"comments":0,"review_comments":1,"commits":2,"additions":2,"deletions":0,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:01:53Z"}
,{"id":"2489651937","type":"CreateEvent","actor":{"id":683817,"login":"Irkka","gravatar_id":"","url":"https://api.github.com/users/Irkka","avatar_url":"https://avatars.githubusercontent.com/u/683817?"},"repo":{"id":28688524,"name":"Irkka/botfarmd","url":"https://api.github.com/repos/Irkka/botfarmd"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"IRC Bot control daemon","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:01:53Z"}
,{"id":"2489651938","type":"PushEvent","actor":{"id":280212,"login":"KenanSulayman","gravatar_id":"","url":"https://api.github.com/users/KenanSulayman","avatar_url":"https://avatars.githubusercontent.com/u/280212?"},"repo":{"id":21481110,"name":"KenanSulayman/heartbeat","url":"https://api.github.com/repos/KenanSulayman/heartbeat"},"payload":{"push_id":536864375,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"344140511ffa3bdd4c22f7b6378d80abe16f6b31","before":"3fa6cbbeb2a4b8eb06b322a9a420b07bd36dcb57","commits":[{"sha":"344140511ffa3bdd4c22f7b6378d80abe16f6b31","author":{"email":"9176253dfc0bc82671a5e984646605f93319147a@sly.mn","name":"Kenan Sulayman"},"message":"1420124511933\n\nWfTX+BxOybQctJh4a0YCn7mVp/sBsTRRcPzkrtayrp4=","distinct":true,"url":"https://api.github.com/repos/KenanSulayman/heartbeat/commits/344140511ffa3bdd4c22f7b6378d80abe16f6b31"}]},"public":true,"created_at":"2015-01-01T15:01:53Z"}
,{"id":"2489651939","type":"PushEvent","actor":{"id":10357835,"login":"mevlan","gravatar_id":"","url":"https://api.github.com/users/mevlan","avatar_url":"https://avatars.githubusercontent.com/u/10357835?"},"repo":{"id":28668460,"name":"mevlan/script","url":"https://api.github.com/repos/mevlan/script"},"payload":{"push_id":536864376,"size":3,"distinct_size":1,"ref":"refs/heads/master","head":"739b1e55a080871d5bd4f317fbcc7628efd25376","before":"37c36e72ff50a69ac6158eb9695352a9b14a15f5","commits":[{"sha":"fecf568375c53fd0bf03eb4e81c821214077f41c","author":{"email":"3fe26ceefc6136597d18aa4b5f569dcddad007e2@mevlans-MacBook-Pro.local","name":"mevlan"},"message":"final function","distinct":false,"url":"https://api.github.com/repos/mevlan/script/commits/fecf568375c53fd0bf03eb4e81c821214077f41c"},{"sha":"5cd1712df72a79bccdebfe073d82224404871fac","author":{"email":"3fe26ceefc6136597d18aa4b5f569dcddad007e2@mevlans-MacBook-Pro.local","name":"mevlan"},"message":"white space removed","distinct":false,"url":"https://api.github.com/repos/mevlan/script/commits/5cd1712df72a79bccdebfe073d82224404871fac"},{"sha":"739b1e55a080871d5bd4f317fbcc7628efd25376","author":{"email":"3fe26ceefc6136597d18aa4b5f569dcddad007e2@hotmail.com","name":"mevlan"},"message":"Merge pull request #3 from mevlan/final\n\nfinal function","distinct":true,"url":"https://api.github.com/repos/mevlan/script/commits/739b1e55a080871d5bd4f317fbcc7628efd25376"}]},"public":true,"created_at":"2015-01-01T15:01:53Z"}
,{"id":"2489651940","type":"IssueCommentEvent","actor":{"id":10356336,"login":"architverma","gravatar_id":"","url":"https://api.github.com/users/architverma","avatar_url":"https://avatars.githubusercontent.com/u/10356336?"},"repo":{"id":907410,"name":"jquery/jquery-mobile","url":"https://api.github.com/repos/jquery/jquery-mobile"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/jquery/jquery-mobile/issues/5431","labels_url":"https://api.github.com/repos/jquery/jquery-mobile/issues/5431/labels{/name}","comments_url":"https://api.github.com/repos/jquery/jquery-mobile/issues/5431/comments","events_url":"https://api.github.com/repos/jquery/jquery-mobile/issues/5431/events","html_url":"https://github.com/jquery/jquery-mobile/issues/5431","id":9838764,"number":5431,"title":"Solution to flicker problem in jQuery mobile page transitions!","user":{"login":"hikalkan","id":1210527,"avatar_url":"https://avatars.githubusercontent.com/u/1210527?v=3","gravatar_id":"","url":"https://api.github.com/users/hikalkan","html_url":"https://github.com/hikalkan","followers_url":"https://api.github.com/users/hikalkan/followers","following_url":"https://api.github.com/users/hikalkan/following{/other_user}","gists_url":"https://api.github.com/users/hikalkan/gists{/gist_id}","starred_url":"https://api.github.com/users/hikalkan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/hikalkan/subscriptions","organizations_url":"https://api.github.com/users/hikalkan/orgs","repos_url":"https://api.github.com/users/hikalkan/repos","events_url":"https://api.github.com/users/hikalkan/events{/privacy}","received_events_url":"https://api.github.com/users/hikalkan/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/jquery/jquery-mobile/labels/Component%3A+Transitions","name":"Component: Transitions","color":"DDDDDD"},{"url":"https://api.github.com/repos/jquery/jquery-mobile/labels/Tag%3A+Fixed+toolbars","name":"Tag: Fixed toolbars","color":"DDDDDD"}],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":46,"created_at":"2013-01-10T11:33:27Z","updated_at":"2015-01-01T15:01:53Z","closed_at":"2014-10-06T20:12:25Z","body":"I'm developing a mobile web site using jQuery mobile framework. When I use page transitions (like slide), it causes a flicking. Especially in default browser in android phones, flicking is really bad.\r\n\r\nI deeply investigate the jquery-mobile.js to understand when this flickering happens. After spending many hours, I found which code part causes the problem: Enabling/Disabling zoom on just before page transition!\r\n\r\nin jQuery mobile 1.2.0 source codes (line 7211 to 7234):\r\n\r\n$.mobile.zoom = $.extend( {}, {\r\n enabled: !disabledInitially,\r\n locked: false,\r\n disable: function( lock ) {\r\n if ( !disabledInitially && !$.mobile.zoom.locked ) {\r\n meta.attr( \"content\", disabledZoom );\r\n $.mobile.zoom.enabled = false;\r\n $.mobile.zoom.locked = lock || false;\r\n }\r\n },\r\n enable: function( unlock ) {\r\n if ( !disabledInitially && ( !$.mobile.zoom.locked || unlock === true ) ) {\r\n meta.attr( \"content\", enabledZoom );\r\n $.mobile.zoom.enabled = true;\r\n $.mobile.zoom.locked = false;\r\n }\r\n },\r\n restore: function() {\r\n if ( !disabledInitially ) {\r\n meta.attr( \"content\", initialContent );\r\n $.mobile.zoom.enabled = true;\r\n }\r\n }\r\n});\r\n\r\nI deleted the lines:\r\n\r\nmeta.attr( \"content\", disabledZoom );\r\n\r\nand\r\n\r\nmeta.attr( \"content\", enabledZoom );\r\n\r\n(lines 7216 and 7223)\r\n\r\nThen it worked smoothly without a problem! I don't know if it causes another problem but the problem was changing max-zoom in page transition. In my tests, it worked correctly without any problem.\r\n\r\nI wanted to inform you to consider this problem while changing zoom."},"comment":{"url":"https://api.github.com/repos/jquery/jquery-mobile/issues/comments/68488528","html_url":"https://github.com/jquery/jquery-mobile/issues/5431#issuecomment-68488528","issue_url":"https://api.github.com/repos/jquery/jquery-mobile/issues/5431","id":68488528,"user":{"login":"architverma","id":10356336,"avatar_url":"https://avatars.githubusercontent.com/u/10356336?v=3","gravatar_id":"","url":"https://api.github.com/users/architverma","html_url":"https://github.com/architverma","followers_url":"https://api.github.com/users/architverma/followers","following_url":"https://api.github.com/users/architverma/following{/other_user}","gists_url":"https://api.github.com/users/architverma/gists{/gist_id}","starred_url":"https://api.github.com/users/architverma/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/architverma/subscriptions","organizations_url":"https://api.github.com/users/architverma/orgs","repos_url":"https://api.github.com/users/architverma/repos","events_url":"https://api.github.com/users/architverma/events{/privacy}","received_events_url":"https://api.github.com/users/architverma/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:01:53Z","updated_at":"2015-01-01T15:01:53Z","body":"hi luigi please tell what you did so your 4.1.2 started working properly.\r\nmy android mobile is not working. and each service centre is saying you have touch screen problem."}},"public":true,"created_at":"2015-01-01T15:01:53Z","org":{"id":70142,"login":"jquery","gravatar_id":"","url":"https://api.github.com/orgs/jquery","avatar_url":"https://avatars.githubusercontent.com/u/70142?"}}
,{"id":"2489651943","type":"CreateEvent","actor":{"id":10364677,"login":"luogyong","gravatar_id":"","url":"https://api.github.com/users/luogyong","avatar_url":"https://avatars.githubusercontent.com/u/10364677?"},"repo":{"id":28688627,"name":"scut/fea-geotechnical-solver","url":"https://api.github.com/repos/scut/fea-geotechnical-solver"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:01:54Z","org":{"id":10364751,"login":"scut","gravatar_id":"","url":"https://api.github.com/orgs/scut","avatar_url":"https://avatars.githubusercontent.com/u/10364751?"}}
,{"id":"2489651948","type":"PushEvent","actor":{"id":46095,"login":"MeirKriheli","gravatar_id":"","url":"https://api.github.com/users/MeirKriheli","avatar_url":"https://avatars.githubusercontent.com/u/46095?"},"repo":{"id":1125942,"name":"hasadna/Open-Knesset","url":"https://api.github.com/repos/hasadna/Open-Knesset"},"payload":{"push_id":536864380,"size":14,"distinct_size":14,"ref":"refs/heads/master","head":"456e518e0b48e87c7137e40d7bba03823e173caa","before":"75714af1397dd841d40433ed1856c66338542ced","commits":[{"sha":"3c4e638529c53ec270d61bfd3e63679ac9b52a3f","author":{"email":"154288d802a050a5a22453e68c3b1902661df990@gmail.com","name":"Benny Daon"},"message":"Add a Committee property - `gender_presence`","distinct":true,"url":"https://api.github.com/repos/hasadna/Open-Knesset/commits/3c4e638529c53ec270d61bfd3e63679ac9b52a3f"},{"sha":"fef18fd92990b08d5003a25d10206f9ff65e4c4c","author":{"email":"154288d802a050a5a22453e68c3b1902661df990@gmail.com","name":"Benny Daon"},"message":"Merge branch 'master' of github.com:hasadna/Open-Knesset","distinct":true,"url":"https://api.github.com/repos/hasadna/Open-Knesset/commits/fef18fd92990b08d5003a25d10206f9ff65e4c4c"},{"sha":"c89932c0ecbadff5c8f9959510d06997a6ed0fb3","author":{"email":"6c720b6ece72a4972cc39d6436cb370514e267ec@uumpa.com","name":"Ori Hoch"},"message":"added scraper that gets events for an mk and stores in new mks.models.Event model","distinct":true,"url":"https://api.github.com/repos/hasadna/Open-Knesset/commits/c89932c0ecbadff5c8f9959510d06997a6ed0fb3"},{"sha":"c360401e58f3d8b7f3ec1323814dfe579a80e0bb","author":{"email":"6c720b6ece72a4972cc39d6436cb370514e267ec@uumpa.com","name":"Ori Hoch"},"message":"added color and updating of events","distinct":true,"url":"https://api.github.com/repos/hasadna/Open-Knesset/commits/c360401e58f3d8b7f3ec1323814dfe579a80e0bb"},{"sha":"fd1eeab673f7c647cb4005c89d90ca30f7d4b6e4","author":{"email":"154288d802a050a5a22453e68c3b1902661df990@gmail.com","name":"Benny Daon"},"message":"Merge commit 'c360401e58f3d8b7f3ec1323814dfe579a80e0bb'","distinct":true,"url":"https://api.github.com/repos/hasadna/Open-Knesset/commits/fd1eeab673f7c647cb4005c89d90ca30f7d4b6e4"},{"sha":"a36b64fd04626f9d662135a25eea9e22fd155108","author":{"email":"154288d802a050a5a22453e68c3b1902661df990@gmail.com","name":"Benny Daon"},"message":"Improving the google calendar interface\n\nStop the url and last sync token in the persons.Person model so it'll be\nopen to more users and store the events in events.Event.","distinct":true,"url":"https://api.github.com/repos/hasadna/Open-Knesset/commits/a36b64fd04626f9d662135a25eea9e22fd155108"},{"sha":"30872810bdd9d31a9b82a3bea5c5d558399f2f38","author":{"email":"154288d802a050a5a22453e68c3b1902661df990@gmail.com","name":"Benny Daon"},"message":"Improving the google calendar interface #279\n\nStop the url and last sync token in the persons.Person model so it'll be\nopen to more users and store the events in events.Event.","distinct":true,"url":"https://api.github.com/repos/hasadna/Open-Knesset/commits/30872810bdd9d31a9b82a3bea5c5d558399f2f38"},{"sha":"7db3cb347f0b5e85a798aabf495924c84b4d1949","author":{"email":"154288d802a050a5a22453e68c3b1902661df990@gmail.com","name":"Benny Daon"},"message":"Merge branch 'master' of github.com:daonb/Open-Knesset","distinct":true,"url":"https://api.github.com/repos/hasadna/Open-Knesset/commits/7db3cb347f0b5e85a798aabf495924c84b4d1949"},{"sha":"1df2040e6e82a4bb14dfa60491945b171bdb2461","author":{"email":"154288d802a050a5a22453e68c3b1902661df990@gmail.com","name":"Benny Daon"},"message":"Merge branch 'master' of github.com:hasadna/Open-Knesset","distinct":true,"url":"https://api.github.com/repos/hasadna/Open-Knesset/commits/1df2040e6e82a4bb14dfa60491945b171bdb2461"},{"sha":"4541f36ffd4519c78683adcee7754611495eaa2f","author":{"email":"154288d802a050a5a22453e68c3b1902661df990@gmail.com","name":"Benny Daon"},"message":"removing a deprecated debug toolbar setting","distinct":true,"url":"https://api.github.com/repos/hasadna/Open-Knesset/commits/4541f36ffd4519c78683adcee7754611495eaa2f"},{"sha":"21ef3bfac0ebee5c0281045c19e9028efb28d767","author":{"email":"154288d802a050a5a22453e68c3b1902661df990@gmail.com","name":"Benny Daon"},"message":"Remove the Plenum from the member API","distinct":true,"url":"https://api.github.com/repos/hasadna/Open-Knesset/commits/21ef3bfac0ebee5c0281045c19e9028efb28d767"},{"sha":"c666d1315b224a87be7d9335eece426e0e8dd1a6","author":{"email":"154288d802a050a5a22453e68c3b1902661df990@gmail.com","name":"Benny Daon"},"message":"Merge branch 'master' of github.com:hasadna/Open-Knesset","distinct":true,"url":"https://api.github.com/repos/hasadna/Open-Knesset/commits/c666d1315b224a87be7d9335eece426e0e8dd1a6"},{"sha":"5cefdda3a0426a24d2a2c077587e311dbfdc317f","author":{"email":"bc8b4c28eff55b2f78fad6f180c722f27abee02f@gmail.com","name":"Meir Kriheli"},"message":"Add API docs link to README","distinct":true,"url":"https://api.github.com/repos/hasadna/Open-Knesset/commits/5cefdda3a0426a24d2a2c077587e311dbfdc317f"},{"sha":"456e518e0b48e87c7137e40d7bba03823e173caa","author":{"email":"bc8b4c28eff55b2f78fad6f180c722f27abee02f@gmail.com","name":"Meir Kriheli"},"message":"Merge branch 'master' of https://github.com/daonb/Open-Knesset","distinct":true,"url":"https://api.github.com/repos/hasadna/Open-Knesset/commits/456e518e0b48e87c7137e40d7bba03823e173caa"}]},"public":true,"created_at":"2015-01-01T15:01:54Z","org":{"id":503639,"login":"hasadna","gravatar_id":"","url":"https://api.github.com/orgs/hasadna","avatar_url":"https://avatars.githubusercontent.com/u/503639?"}}
,{"id":"2489651949","type":"WatchEvent","actor":{"id":8203034,"login":"licg9999","gravatar_id":"","url":"https://api.github.com/users/licg9999","avatar_url":"https://avatars.githubusercontent.com/u/8203034?"},"repo":{"id":481220,"name":"kchmck/vim-coffee-script","url":"https://api.github.com/repos/kchmck/vim-coffee-script"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:01:55Z"}
,{"id":"2489651953","type":"PushEvent","actor":{"id":9381532,"login":"vatsaaa","gravatar_id":"","url":"https://api.github.com/users/vatsaaa","avatar_url":"https://avatars.githubusercontent.com/u/9381532?"},"repo":{"id":28673152,"name":"vatsaaa/mycodesnips","url":"https://api.github.com/repos/vatsaaa/mycodesnips"},"payload":{"push_id":536864382,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"2cc8c3e6daa29c0cf8b1f1b20e0fd56c2c40b03b","before":"4a7b8abb684c43cd6ace984534f82e612b9a20ec","commits":[{"sha":"2cc8c3e6daa29c0cf8b1f1b20e0fd56c2c40b03b","author":{"email":"be51eeb01ab0ddac52571dd736dd0fd5d13a6a37@gmail.com","name":"Gudakesh Ankur Vatsa"},"message":"Delete StrPalindrome.java","distinct":true,"url":"https://api.github.com/repos/vatsaaa/mycodesnips/commits/2cc8c3e6daa29c0cf8b1f1b20e0fd56c2c40b03b"}]},"public":true,"created_at":"2015-01-01T15:01:55Z"}
,{"id":"2489651957","type":"CreateEvent","actor":{"id":3757284,"login":"alfredessa","gravatar_id":"","url":"https://api.github.com/users/alfredessa","avatar_url":"https://avatars.githubusercontent.com/u/3757284?"},"repo":{"id":28688628,"name":"alfredessa/pythonda2015","url":"https://api.github.com/repos/alfredessa/pythonda2015"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:01:55Z"}
,{"id":"2489651959","type":"PullRequestEvent","actor":{"id":143206,"login":"makasim","gravatar_id":"","url":"https://api.github.com/users/makasim","avatar_url":"https://avatars.githubusercontent.com/u/143206?"},"repo":{"id":7016481,"name":"Payum/PayumBundle","url":"https://api.github.com/repos/Payum/PayumBundle"},"payload":{"action":"closed","number":223,"pull_request":{"url":"https://api.github.com/repos/Payum/PayumBundle/pulls/223","id":26725492,"html_url":"https://github.com/Payum/PayumBundle/pull/223","diff_url":"https://github.com/Payum/PayumBundle/pull/223.diff","patch_url":"https://github.com/Payum/PayumBundle/pull/223.patch","issue_url":"https://api.github.com/repos/Payum/PayumBundle/issues/223","number":223,"state":"closed","locked":false,"title":"[twig] automaticly add paths to twig bundle via prepend config","user":{"login":"makasim","id":143206,"avatar_url":"https://avatars.githubusercontent.com/u/143206?v=3","gravatar_id":"","url":"https://api.github.com/users/makasim","html_url":"https://github.com/makasim","followers_url":"https://api.github.com/users/makasim/followers","following_url":"https://api.github.com/users/makasim/following{/other_user}","gists_url":"https://api.github.com/users/makasim/gists{/gist_id}","starred_url":"https://api.github.com/users/makasim/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/makasim/subscriptions","organizations_url":"https://api.github.com/users/makasim/orgs","repos_url":"https://api.github.com/users/makasim/repos","events_url":"https://api.github.com/users/makasim/events{/privacy}","received_events_url":"https://api.github.com/users/makasim/received_events","type":"User","site_admin":false},"body":"","created_at":"2014-12-31T14:29:23Z","updated_at":"2015-01-01T15:01:56Z","closed_at":"2015-01-01T15:01:56Z","merged_at":"2015-01-01T15:01:56Z","merge_commit_sha":"620da33b3eb3bace92156da04f48d236b061959e","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/Payum/PayumBundle/pulls/223/commits","review_comments_url":"https://api.github.com/repos/Payum/PayumBundle/pulls/223/comments","review_comment_url":"https://api.github.com/repos/Payum/PayumBundle/pulls/comments/{number}","comments_url":"https://api.github.com/repos/Payum/PayumBundle/issues/223/comments","statuses_url":"https://api.github.com/repos/Payum/PayumBundle/statuses/d5bcd3289bb7c1506e04e8710bf78d1ff2097684","head":{"label":"formapro-forks:twig-prepend-paths","ref":"twig-prepend-paths","sha":"d5bcd3289bb7c1506e04e8710bf78d1ff2097684","user":{"login":"formapro-forks","id":5163809,"avatar_url":"https://avatars.githubusercontent.com/u/5163809?v=3","gravatar_id":"","url":"https://api.github.com/users/formapro-forks","html_url":"https://github.com/formapro-forks","followers_url":"https://api.github.com/users/formapro-forks/followers","following_url":"https://api.github.com/users/formapro-forks/following{/other_user}","gists_url":"https://api.github.com/users/formapro-forks/gists{/gist_id}","starred_url":"https://api.github.com/users/formapro-forks/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/formapro-forks/subscriptions","organizations_url":"https://api.github.com/users/formapro-forks/orgs","repos_url":"https://api.github.com/users/formapro-forks/repos","events_url":"https://api.github.com/users/formapro-forks/events{/privacy}","received_events_url":"https://api.github.com/users/formapro-forks/received_events","type":"Organization","site_admin":false},"repo":{"id":20431944,"name":"PayumBundle","full_name":"formapro-forks/PayumBundle","owner":{"login":"formapro-forks","id":5163809,"avatar_url":"https://avatars.githubusercontent.com/u/5163809?v=3","gravatar_id":"","url":"https://api.github.com/users/formapro-forks","html_url":"https://github.com/formapro-forks","followers_url":"https://api.github.com/users/formapro-forks/followers","following_url":"https://api.github.com/users/formapro-forks/following{/other_user}","gists_url":"https://api.github.com/users/formapro-forks/gists{/gist_id}","starred_url":"https://api.github.com/users/formapro-forks/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/formapro-forks/subscriptions","organizations_url":"https://api.github.com/users/formapro-forks/orgs","repos_url":"https://api.github.com/users/formapro-forks/repos","events_url":"https://api.github.com/users/formapro-forks/events{/privacy}","received_events_url":"https://api.github.com/users/formapro-forks/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/formapro-forks/PayumBundle","description":"Rich payment solutions for symfony2. Paypal, payex, authorize.net, be2bill, omnipay, recurring paymens, instant notifications and many more","fork":true,"url":"https://api.github.com/repos/formapro-forks/PayumBundle","forks_url":"https://api.github.com/repos/formapro-forks/PayumBundle/forks","keys_url":"https://api.github.com/repos/formapro-forks/PayumBundle/keys{/key_id}","collaborators_url":"https://api.github.com/repos/formapro-forks/PayumBundle/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/formapro-forks/PayumBundle/teams","hooks_url":"https://api.github.com/repos/formapro-forks/PayumBundle/hooks","issue_events_url":"https://api.github.com/repos/formapro-forks/PayumBundle/issues/events{/number}","events_url":"https://api.github.com/repos/formapro-forks/PayumBundle/events","assignees_url":"https://api.github.com/repos/formapro-forks/PayumBundle/assignees{/user}","branches_url":"https://api.github.com/repos/formapro-forks/PayumBundle/branches{/branch}","tags_url":"https://api.github.com/repos/formapro-forks/PayumBundle/tags","blobs_url":"https://api.github.com/repos/formapro-forks/PayumBundle/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/formapro-forks/PayumBundle/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/formapro-forks/PayumBundle/git/refs{/sha}","trees_url":"https://api.github.com/repos/formapro-forks/PayumBundle/git/trees{/sha}","statuses_url":"https://api.github.com/repos/formapro-forks/PayumBundle/statuses/{sha}","languages_url":"https://api.github.com/repos/formapro-forks/PayumBundle/languages","stargazers_url":"https://api.github.com/repos/formapro-forks/PayumBundle/stargazers","contributors_url":"https://api.github.com/repos/formapro-forks/PayumBundle/contributors","subscribers_url":"https://api.github.com/repos/formapro-forks/PayumBundle/subscribers","subscription_url":"https://api.github.com/repos/formapro-forks/PayumBundle/subscription","commits_url":"https://api.github.com/repos/formapro-forks/PayumBundle/commits{/sha}","git_commits_url":"https://api.github.com/repos/formapro-forks/PayumBundle/git/commits{/sha}","comments_url":"https://api.github.com/repos/formapro-forks/PayumBundle/comments{/number}","issue_comment_url":"https://api.github.com/repos/formapro-forks/PayumBundle/issues/comments/{number}","contents_url":"https://api.github.com/repos/formapro-forks/PayumBundle/contents/{+path}","compare_url":"https://api.github.com/repos/formapro-forks/PayumBundle/compare/{base}...{head}","merges_url":"https://api.github.com/repos/formapro-forks/PayumBundle/merges","archive_url":"https://api.github.com/repos/formapro-forks/PayumBundle/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/formapro-forks/PayumBundle/downloads","issues_url":"https://api.github.com/repos/formapro-forks/PayumBundle/issues{/number}","pulls_url":"https://api.github.com/repos/formapro-forks/PayumBundle/pulls{/number}","milestones_url":"https://api.github.com/repos/formapro-forks/PayumBundle/milestones{/number}","notifications_url":"https://api.github.com/repos/formapro-forks/PayumBundle/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/formapro-forks/PayumBundle/labels{/name}","releases_url":"https://api.github.com/repos/formapro-forks/PayumBundle/releases{/id}","created_at":"2014-06-03T06:25:09Z","updated_at":"2014-09-03T10:25:41Z","pushed_at":"2015-01-01T14:53:42Z","git_url":"git://github.com/formapro-forks/PayumBundle.git","ssh_url":"git@github.com:formapro-forks/PayumBundle.git","clone_url":"https://github.com/formapro-forks/PayumBundle.git","svn_url":"https://github.com/formapro-forks/PayumBundle","homepage":"payum.forma-dev.com/documentation#PayumBundle","size":1250,"stargazers_count":0,"watchers_count":0,"language":"PHP","has_issues":false,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master"}},"base":{"label":"Payum:master","ref":"master","sha":"4017da9edc1a789aba650273c08bfa4790d4fadb","user":{"login":"Payum","id":2638697,"avatar_url":"https://avatars.githubusercontent.com/u/2638697?v=3","gravatar_id":"","url":"https://api.github.com/users/Payum","html_url":"https://github.com/Payum","followers_url":"https://api.github.com/users/Payum/followers","following_url":"https://api.github.com/users/Payum/following{/other_user}","gists_url":"https://api.github.com/users/Payum/gists{/gist_id}","starred_url":"https://api.github.com/users/Payum/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Payum/subscriptions","organizations_url":"https://api.github.com/users/Payum/orgs","repos_url":"https://api.github.com/users/Payum/repos","events_url":"https://api.github.com/users/Payum/events{/privacy}","received_events_url":"https://api.github.com/users/Payum/received_events","type":"Organization","site_admin":false},"repo":{"id":7016481,"name":"PayumBundle","full_name":"Payum/PayumBundle","owner":{"login":"Payum","id":2638697,"avatar_url":"https://avatars.githubusercontent.com/u/2638697?v=3","gravatar_id":"","url":"https://api.github.com/users/Payum","html_url":"https://github.com/Payum","followers_url":"https://api.github.com/users/Payum/followers","following_url":"https://api.github.com/users/Payum/following{/other_user}","gists_url":"https://api.github.com/users/Payum/gists{/gist_id}","starred_url":"https://api.github.com/users/Payum/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Payum/subscriptions","organizations_url":"https://api.github.com/users/Payum/orgs","repos_url":"https://api.github.com/users/Payum/repos","events_url":"https://api.github.com/users/Payum/events{/privacy}","received_events_url":"https://api.github.com/users/Payum/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/Payum/PayumBundle","description":"Rich payment solutions for symfony2. Paypal, Stripe, Payex, Authorize.NET, Be2bill, Klarna, recurring paymens, instant notifications and many more","fork":false,"url":"https://api.github.com/repos/Payum/PayumBundle","forks_url":"https://api.github.com/repos/Payum/PayumBundle/forks","keys_url":"https://api.github.com/repos/Payum/PayumBundle/keys{/key_id}","collaborators_url":"https://api.github.com/repos/Payum/PayumBundle/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/Payum/PayumBundle/teams","hooks_url":"https://api.github.com/repos/Payum/PayumBundle/hooks","issue_events_url":"https://api.github.com/repos/Payum/PayumBundle/issues/events{/number}","events_url":"https://api.github.com/repos/Payum/PayumBundle/events","assignees_url":"https://api.github.com/repos/Payum/PayumBundle/assignees{/user}","branches_url":"https://api.github.com/repos/Payum/PayumBundle/branches{/branch}","tags_url":"https://api.github.com/repos/Payum/PayumBundle/tags","blobs_url":"https://api.github.com/repos/Payum/PayumBundle/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/Payum/PayumBundle/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/Payum/PayumBundle/git/refs{/sha}","trees_url":"https://api.github.com/repos/Payum/PayumBundle/git/trees{/sha}","statuses_url":"https://api.github.com/repos/Payum/PayumBundle/statuses/{sha}","languages_url":"https://api.github.com/repos/Payum/PayumBundle/languages","stargazers_url":"https://api.github.com/repos/Payum/PayumBundle/stargazers","contributors_url":"https://api.github.com/repos/Payum/PayumBundle/contributors","subscribers_url":"https://api.github.com/repos/Payum/PayumBundle/subscribers","subscription_url":"https://api.github.com/repos/Payum/PayumBundle/subscription","commits_url":"https://api.github.com/repos/Payum/PayumBundle/commits{/sha}","git_commits_url":"https://api.github.com/repos/Payum/PayumBundle/git/commits{/sha}","comments_url":"https://api.github.com/repos/Payum/PayumBundle/comments{/number}","issue_comment_url":"https://api.github.com/repos/Payum/PayumBundle/issues/comments/{number}","contents_url":"https://api.github.com/repos/Payum/PayumBundle/contents/{+path}","compare_url":"https://api.github.com/repos/Payum/PayumBundle/compare/{base}...{head}","merges_url":"https://api.github.com/repos/Payum/PayumBundle/merges","archive_url":"https://api.github.com/repos/Payum/PayumBundle/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/Payum/PayumBundle/downloads","issues_url":"https://api.github.com/repos/Payum/PayumBundle/issues{/number}","pulls_url":"https://api.github.com/repos/Payum/PayumBundle/pulls{/number}","milestones_url":"https://api.github.com/repos/Payum/PayumBundle/milestones{/number}","notifications_url":"https://api.github.com/repos/Payum/PayumBundle/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/Payum/PayumBundle/labels{/name}","releases_url":"https://api.github.com/repos/Payum/PayumBundle/releases{/id}","created_at":"2012-12-05T11:40:39Z","updated_at":"2014-12-31T12:15:31Z","pushed_at":"2015-01-01T15:01:56Z","git_url":"git://github.com/Payum/PayumBundle.git","ssh_url":"git@github.com:Payum/PayumBundle.git","clone_url":"https://github.com/Payum/PayumBundle.git","svn_url":"https://github.com/Payum/PayumBundle","homepage":" http://payum.org/doc#PayumBundle","size":2803,"stargazers_count":122,"watchers_count":122,"language":"PHP","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":48,"mirror_url":null,"open_issues_count":11,"forks":48,"open_issues":11,"watchers":122,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/Payum/PayumBundle/pulls/223"},"html":{"href":"https://github.com/Payum/PayumBundle/pull/223"},"issue":{"href":"https://api.github.com/repos/Payum/PayumBundle/issues/223"},"comments":{"href":"https://api.github.com/repos/Payum/PayumBundle/issues/223/comments"},"review_comments":{"href":"https://api.github.com/repos/Payum/PayumBundle/pulls/223/comments"},"review_comment":{"href":"https://api.github.com/repos/Payum/PayumBundle/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/Payum/PayumBundle/pulls/223/commits"},"statuses":{"href":"https://api.github.com/repos/Payum/PayumBundle/statuses/d5bcd3289bb7c1506e04e8710bf78d1ff2097684"}},"merged":true,"mergeable":null,"mergeable_state":"unknown","merged_by":{"login":"makasim","id":143206,"avatar_url":"https://avatars.githubusercontent.com/u/143206?v=3","gravatar_id":"","url":"https://api.github.com/users/makasim","html_url":"https://github.com/makasim","followers_url":"https://api.github.com/users/makasim/followers","following_url":"https://api.github.com/users/makasim/following{/other_user}","gists_url":"https://api.github.com/users/makasim/gists{/gist_id}","starred_url":"https://api.github.com/users/makasim/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/makasim/subscriptions","organizations_url":"https://api.github.com/users/makasim/orgs","repos_url":"https://api.github.com/users/makasim/repos","events_url":"https://api.github.com/users/makasim/events{/privacy}","received_events_url":"https://api.github.com/users/makasim/received_events","type":"User","site_admin":false},"comments":0,"review_comments":0,"commits":11,"additions":32,"deletions":48,"changed_files":10}},"public":true,"created_at":"2015-01-01T15:01:56Z","org":{"id":2638697,"login":"Payum","gravatar_id":"","url":"https://api.github.com/orgs/Payum","avatar_url":"https://avatars.githubusercontent.com/u/2638697?"}}
,{"id":"2489651962","type":"CreateEvent","actor":{"id":5724186,"login":"abhinav-garg","gravatar_id":"","url":"https://api.github.com/users/abhinav-garg","avatar_url":"https://avatars.githubusercontent.com/u/5724186?"},"repo":{"id":28688629,"name":"abhinav-garg/web-page","url":"https://api.github.com/repos/abhinav-garg/web-page"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:01:56Z"}
,{"id":"2489651964","type":"PushEvent","actor":{"id":143206,"login":"makasim","gravatar_id":"","url":"https://api.github.com/users/makasim","avatar_url":"https://avatars.githubusercontent.com/u/143206?"},"repo":{"id":7016481,"name":"Payum/PayumBundle","url":"https://api.github.com/repos/Payum/PayumBundle"},"payload":{"push_id":536864386,"size":12,"distinct_size":12,"ref":"refs/heads/master","head":"d396b1341bc25058eda4f15af3491fcfe6e02588","before":"4017da9edc1a789aba650273c08bfa4790d4fadb","commits":[{"sha":"1ea9dd644256feb968478ffc9d3a42b357892f71","author":{"email":"1e5b76eabe6b1baca77962a21b570150453aff4a@gmail.com","name":"Kotlyar Maksim"},"message":"[twig] automaticly add paths to twig bundle via prepend config","distinct":true,"url":"https://api.github.com/repos/Payum/PayumBundle/commits/1ea9dd644256feb968478ffc9d3a42b357892f71"},{"sha":"94d1ca85237ff3f07f44b4bb5f01c634bafaeba5","author":{"email":"1e5b76eabe6b1baca77962a21b570150453aff4a@gmail.com","name":"Kotlyar Maksim"},"message":"fix tests","distinct":true,"url":"https://api.github.com/repos/Payum/PayumBundle/commits/94d1ca85237ff3f07f44b4bb5f01c634bafaeba5"},{"sha":"f8bec7aa50eaf0375ab56ad7e3cd42227cad80f6","author":{"email":"1e5b76eabe6b1baca77962a21b570150453aff4a@gmail.com","name":"Kotlyar Maksim"},"message":"fix tests","distinct":true,"url":"https://api.github.com/repos/Payum/PayumBundle/commits/f8bec7aa50eaf0375ab56ad7e3cd42227cad80f6"},{"sha":"06cce6c98297f61d45d3449d484d1b74d6823634","author":{"email":"1e5b76eabe6b1baca77962a21b570150453aff4a@gmail.com","name":"Kotlyar Maksim"},"message":"update travis.","distinct":true,"url":"https://api.github.com/repos/Payum/PayumBundle/commits/06cce6c98297f61d45d3449d484d1b74d6823634"},{"sha":"688322bd930dd8fa71f9e00a5a792afa271f24d5","author":{"email":"1e5b76eabe6b1baca77962a21b570150453aff4a@gmail.com","name":"Kotlyar Maksim"},"message":"fix travis.","distinct":true,"url":"https://api.github.com/repos/Payum/PayumBundle/commits/688322bd930dd8fa71f9e00a5a792afa271f24d5"},{"sha":"de6945b1c90c82fd8475b01172193be1618179da","author":{"email":"1e5b76eabe6b1baca77962a21b570150453aff4a@gmail.com","name":"Kotlyar Maksim"},"message":"fix travis.","distinct":true,"url":"https://api.github.com/repos/Payum/PayumBundle/commits/de6945b1c90c82fd8475b01172193be1618179da"},{"sha":"3c6119cf7a47579972efb8a767606ed80208586c","author":{"email":"1e5b76eabe6b1baca77962a21b570150453aff4a@gmail.com","name":"Kotlyar Maksim"},"message":"fix traivs.","distinct":true,"url":"https://api.github.com/repos/Payum/PayumBundle/commits/3c6119cf7a47579972efb8a767606ed80208586c"},{"sha":"41b5d6c43b87c5368d88ec0a2f384fd45730dcc6","author":{"email":"1e5b76eabe6b1baca77962a21b570150453aff4a@gmail.com","name":"Kotlyar Maksim"},"message":"fix travis.","distinct":true,"url":"https://api.github.com/repos/Payum/PayumBundle/commits/41b5d6c43b87c5368d88ec0a2f384fd45730dcc6"},{"sha":"74f72e98a78ffce83523142b6e90427c7e5ba39a","author":{"email":"1e5b76eabe6b1baca77962a21b570150453aff4a@gmail.com","name":"Kotlyar Maksim"},"message":"fix travis","distinct":true,"url":"https://api.github.com/repos/Payum/PayumBundle/commits/74f72e98a78ffce83523142b6e90427c7e5ba39a"},{"sha":"2e720565c32fabf75e24c24a8277182adf8c4aaa","author":{"email":"1e5b76eabe6b1baca77962a21b570150453aff4a@gmail.com","name":"Kotlyar Maksim"},"message":"fix travis.","distinct":true,"url":"https://api.github.com/repos/Payum/PayumBundle/commits/2e720565c32fabf75e24c24a8277182adf8c4aaa"},{"sha":"d5bcd3289bb7c1506e04e8710bf78d1ff2097684","author":{"email":"1e5b76eabe6b1baca77962a21b570150453aff4a@gmail.com","name":"Kotlyar Maksim"},"message":"fix travis.","distinct":true,"url":"https://api.github.com/repos/Payum/PayumBundle/commits/d5bcd3289bb7c1506e04e8710bf78d1ff2097684"},{"sha":"d396b1341bc25058eda4f15af3491fcfe6e02588","author":{"email":"1e5b76eabe6b1baca77962a21b570150453aff4a@gmail.com","name":"Maksim Kotlyar"},"message":"Merge pull request #223 from formapro-forks/twig-prepend-paths\n\n[twig] automaticly add paths to twig bundle via prepend config","distinct":true,"url":"https://api.github.com/repos/Payum/PayumBundle/commits/d396b1341bc25058eda4f15af3491fcfe6e02588"}]},"public":true,"created_at":"2015-01-01T15:01:56Z","org":{"id":2638697,"login":"Payum","gravatar_id":"","url":"https://api.github.com/orgs/Payum","avatar_url":"https://avatars.githubusercontent.com/u/2638697?"}}
,{"id":"2489651967","type":"CreateEvent","actor":{"id":5477252,"login":"callumW","gravatar_id":"","url":"https://api.github.com/users/callumW","avatar_url":"https://avatars.githubusercontent.com/u/5477252?"},"repo":{"id":28609540,"name":"callumW/map_generator","url":"https://api.github.com/repos/callumW/map_generator"},"payload":{"ref":"terrain_globberv2","ref_type":"tag","master_branch":"master","description":"code for creating a map, in a linux terminal, comprised of 1's and 0's ","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:01:57Z"}
,{"id":"2489651968","type":"WatchEvent","actor":{"id":1089814,"login":"muhaha03","gravatar_id":"","url":"https://api.github.com/users/muhaha03","avatar_url":"https://avatars.githubusercontent.com/u/1089814?"},"repo":{"id":28517589,"name":"imgix/imgix-emacs","url":"https://api.github.com/repos/imgix/imgix-emacs"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:01:57Z","org":{"id":2793044,"login":"imgix","gravatar_id":"","url":"https://api.github.com/orgs/imgix","avatar_url":"https://avatars.githubusercontent.com/u/2793044?"}}
,{"id":"2489651974","type":"DeleteEvent","actor":{"id":143206,"login":"makasim","gravatar_id":"","url":"https://api.github.com/users/makasim","avatar_url":"https://avatars.githubusercontent.com/u/143206?"},"repo":{"id":20431944,"name":"formapro-forks/PayumBundle","url":"https://api.github.com/repos/formapro-forks/PayumBundle"},"payload":{"ref":"twig-prepend-paths","ref_type":"branch","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:01:57Z","org":{"id":5163809,"login":"formapro-forks","gravatar_id":"","url":"https://api.github.com/orgs/formapro-forks","avatar_url":"https://avatars.githubusercontent.com/u/5163809?"}}
,{"id":"2489651975","type":"WatchEvent","actor":{"id":1089814,"login":"muhaha03","gravatar_id":"","url":"https://api.github.com/users/muhaha03","avatar_url":"https://avatars.githubusercontent.com/u/1089814?"},"repo":{"id":14081437,"name":"LnxPrgr3/crossfeed","url":"https://api.github.com/repos/LnxPrgr3/crossfeed"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:01:58Z"}
,{"id":"2489651977","type":"CreateEvent","actor":{"id":2033346,"login":"DalekVoid","gravatar_id":"","url":"https://api.github.com/users/DalekVoid","avatar_url":"https://avatars.githubusercontent.com/u/2033346?"},"repo":{"id":28688630,"name":"DalekVoid/Compass-And-Straightedge-Construction","url":"https://api.github.com/repos/DalekVoid/Compass-And-Straightedge-Construction"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"Design with compass and straightedge constructions, the basis geometric technique, with Sketch. WIP.","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:01:58Z"}
,{"id":"2489651978","type":"CreateEvent","actor":{"id":7836683,"login":"lucasayat","gravatar_id":"","url":"https://api.github.com/users/lucasayat","avatar_url":"https://avatars.githubusercontent.com/u/7836683?"},"repo":{"id":28688631,"name":"lucasayat/jardinor","url":"https://api.github.com/repos/lucasayat/jardinor"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:01:58Z"}
,{"id":"2489651981","type":"PullRequestEvent","actor":{"id":621232,"login":"deeperx","gravatar_id":"","url":"https://api.github.com/users/deeperx","avatar_url":"https://avatars.githubusercontent.com/u/621232?"},"repo":{"id":28667947,"name":"deeperx/dojo_rules","url":"https://api.github.com/repos/deeperx/dojo_rules"},"payload":{"action":"opened","number":4,"pull_request":{"url":"https://api.github.com/repos/deeperx/dojo_rules/pulls/4","id":26743782,"html_url":"https://github.com/deeperx/dojo_rules/pull/4","diff_url":"https://github.com/deeperx/dojo_rules/pull/4.diff","patch_url":"https://github.com/deeperx/dojo_rules/pull/4.patch","issue_url":"https://api.github.com/repos/deeperx/dojo_rules/issues/4","number":4,"state":"open","locked":false,"title":"add: programmers to kill list fixes #3","user":{"login":"deeperx","id":621232,"avatar_url":"https://avatars.githubusercontent.com/u/621232?v=3","gravatar_id":"","url":"https://api.github.com/users/deeperx","html_url":"https://github.com/deeperx","followers_url":"https://api.github.com/users/deeperx/followers","following_url":"https://api.github.com/users/deeperx/following{/other_user}","gists_url":"https://api.github.com/users/deeperx/gists{/gist_id}","starred_url":"https://api.github.com/users/deeperx/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/deeperx/subscriptions","organizations_url":"https://api.github.com/users/deeperx/orgs","repos_url":"https://api.github.com/users/deeperx/repos","events_url":"https://api.github.com/users/deeperx/events{/privacy}","received_events_url":"https://api.github.com/users/deeperx/received_events","type":"User","site_admin":false},"body":"","created_at":"2015-01-01T15:01:58Z","updated_at":"2015-01-01T15:01:58Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/deeperx/dojo_rules/pulls/4/commits","review_comments_url":"https://api.github.com/repos/deeperx/dojo_rules/pulls/4/comments","review_comment_url":"https://api.github.com/repos/deeperx/dojo_rules/pulls/comments/{number}","comments_url":"https://api.github.com/repos/deeperx/dojo_rules/issues/4/comments","statuses_url":"https://api.github.com/repos/deeperx/dojo_rules/statuses/c81ce0de1788f8a5fafdecc155654733be41587f","head":{"label":"deeperx:kill_list","ref":"kill_list","sha":"c81ce0de1788f8a5fafdecc155654733be41587f","user":{"login":"deeperx","id":621232,"avatar_url":"https://avatars.githubusercontent.com/u/621232?v=3","gravatar_id":"","url":"https://api.github.com/users/deeperx","html_url":"https://github.com/deeperx","followers_url":"https://api.github.com/users/deeperx/followers","following_url":"https://api.github.com/users/deeperx/following{/other_user}","gists_url":"https://api.github.com/users/deeperx/gists{/gist_id}","starred_url":"https://api.github.com/users/deeperx/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/deeperx/subscriptions","organizations_url":"https://api.github.com/users/deeperx/orgs","repos_url":"https://api.github.com/users/deeperx/repos","events_url":"https://api.github.com/users/deeperx/events{/privacy}","received_events_url":"https://api.github.com/users/deeperx/received_events","type":"User","site_admin":false},"repo":{"id":28667947,"name":"dojo_rules","full_name":"deeperx/dojo_rules","owner":{"login":"deeperx","id":621232,"avatar_url":"https://avatars.githubusercontent.com/u/621232?v=3","gravatar_id":"","url":"https://api.github.com/users/deeperx","html_url":"https://github.com/deeperx","followers_url":"https://api.github.com/users/deeperx/followers","following_url":"https://api.github.com/users/deeperx/following{/other_user}","gists_url":"https://api.github.com/users/deeperx/gists{/gist_id}","starred_url":"https://api.github.com/users/deeperx/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/deeperx/subscriptions","organizations_url":"https://api.github.com/users/deeperx/orgs","repos_url":"https://api.github.com/users/deeperx/repos","events_url":"https://api.github.com/users/deeperx/events{/privacy}","received_events_url":"https://api.github.com/users/deeperx/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/deeperx/dojo_rules","description":"","fork":true,"url":"https://api.github.com/repos/deeperx/dojo_rules","forks_url":"https://api.github.com/repos/deeperx/dojo_rules/forks","keys_url":"https://api.github.com/repos/deeperx/dojo_rules/keys{/key_id}","collaborators_url":"https://api.github.com/repos/deeperx/dojo_rules/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/deeperx/dojo_rules/teams","hooks_url":"https://api.github.com/repos/deeperx/dojo_rules/hooks","issue_events_url":"https://api.github.com/repos/deeperx/dojo_rules/issues/events{/number}","events_url":"https://api.github.com/repos/deeperx/dojo_rules/events","assignees_url":"https://api.github.com/repos/deeperx/dojo_rules/assignees{/user}","branches_url":"https://api.github.com/repos/deeperx/dojo_rules/branches{/branch}","tags_url":"https://api.github.com/repos/deeperx/dojo_rules/tags","blobs_url":"https://api.github.com/repos/deeperx/dojo_rules/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/deeperx/dojo_rules/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/deeperx/dojo_rules/git/refs{/sha}","trees_url":"https://api.github.com/repos/deeperx/dojo_rules/git/trees{/sha}","statuses_url":"https://api.github.com/repos/deeperx/dojo_rules/statuses/{sha}","languages_url":"https://api.github.com/repos/deeperx/dojo_rules/languages","stargazers_url":"https://api.github.com/repos/deeperx/dojo_rules/stargazers","contributors_url":"https://api.github.com/repos/deeperx/dojo_rules/contributors","subscribers_url":"https://api.github.com/repos/deeperx/dojo_rules/subscribers","subscription_url":"https://api.github.com/repos/deeperx/dojo_rules/subscription","commits_url":"https://api.github.com/repos/deeperx/dojo_rules/commits{/sha}","git_commits_url":"https://api.github.com/repos/deeperx/dojo_rules/git/commits{/sha}","comments_url":"https://api.github.com/repos/deeperx/dojo_rules/comments{/number}","issue_comment_url":"https://api.github.com/repos/deeperx/dojo_rules/issues/comments/{number}","contents_url":"https://api.github.com/repos/deeperx/dojo_rules/contents/{+path}","compare_url":"https://api.github.com/repos/deeperx/dojo_rules/compare/{base}...{head}","merges_url":"https://api.github.com/repos/deeperx/dojo_rules/merges","archive_url":"https://api.github.com/repos/deeperx/dojo_rules/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/deeperx/dojo_rules/downloads","issues_url":"https://api.github.com/repos/deeperx/dojo_rules/issues{/number}","pulls_url":"https://api.github.com/repos/deeperx/dojo_rules/pulls{/number}","milestones_url":"https://api.github.com/repos/deeperx/dojo_rules/milestones{/number}","notifications_url":"https://api.github.com/repos/deeperx/dojo_rules/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/deeperx/dojo_rules/labels{/name}","releases_url":"https://api.github.com/repos/deeperx/dojo_rules/releases{/id}","created_at":"2014-12-31T14:41:08Z","updated_at":"2015-01-01T14:57:50Z","pushed_at":"2015-01-01T15:00:18Z","git_url":"git://github.com/deeperx/dojo_rules.git","ssh_url":"git@github.com:deeperx/dojo_rules.git","clone_url":"https://github.com/deeperx/dojo_rules.git","svn_url":"https://github.com/deeperx/dojo_rules","homepage":null,"size":174,"stargazers_count":0,"watchers_count":0,"language":"Ruby","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":true,"forks_count":0,"mirror_url":null,"open_issues_count":2,"forks":0,"open_issues":2,"watchers":0,"default_branch":"master"}},"base":{"label":"deeperx:master","ref":"master","sha":"2913bd18d5d8648ee4b1f38eaaa42075a606f853","user":{"login":"deeperx","id":621232,"avatar_url":"https://avatars.githubusercontent.com/u/621232?v=3","gravatar_id":"","url":"https://api.github.com/users/deeperx","html_url":"https://github.com/deeperx","followers_url":"https://api.github.com/users/deeperx/followers","following_url":"https://api.github.com/users/deeperx/following{/other_user}","gists_url":"https://api.github.com/users/deeperx/gists{/gist_id}","starred_url":"https://api.github.com/users/deeperx/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/deeperx/subscriptions","organizations_url":"https://api.github.com/users/deeperx/orgs","repos_url":"https://api.github.com/users/deeperx/repos","events_url":"https://api.github.com/users/deeperx/events{/privacy}","received_events_url":"https://api.github.com/users/deeperx/received_events","type":"User","site_admin":false},"repo":{"id":28667947,"name":"dojo_rules","full_name":"deeperx/dojo_rules","owner":{"login":"deeperx","id":621232,"avatar_url":"https://avatars.githubusercontent.com/u/621232?v=3","gravatar_id":"","url":"https://api.github.com/users/deeperx","html_url":"https://github.com/deeperx","followers_url":"https://api.github.com/users/deeperx/followers","following_url":"https://api.github.com/users/deeperx/following{/other_user}","gists_url":"https://api.github.com/users/deeperx/gists{/gist_id}","starred_url":"https://api.github.com/users/deeperx/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/deeperx/subscriptions","organizations_url":"https://api.github.com/users/deeperx/orgs","repos_url":"https://api.github.com/users/deeperx/repos","events_url":"https://api.github.com/users/deeperx/events{/privacy}","received_events_url":"https://api.github.com/users/deeperx/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/deeperx/dojo_rules","description":"","fork":true,"url":"https://api.github.com/repos/deeperx/dojo_rules","forks_url":"https://api.github.com/repos/deeperx/dojo_rules/forks","keys_url":"https://api.github.com/repos/deeperx/dojo_rules/keys{/key_id}","collaborators_url":"https://api.github.com/repos/deeperx/dojo_rules/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/deeperx/dojo_rules/teams","hooks_url":"https://api.github.com/repos/deeperx/dojo_rules/hooks","issue_events_url":"https://api.github.com/repos/deeperx/dojo_rules/issues/events{/number}","events_url":"https://api.github.com/repos/deeperx/dojo_rules/events","assignees_url":"https://api.github.com/repos/deeperx/dojo_rules/assignees{/user}","branches_url":"https://api.github.com/repos/deeperx/dojo_rules/branches{/branch}","tags_url":"https://api.github.com/repos/deeperx/dojo_rules/tags","blobs_url":"https://api.github.com/repos/deeperx/dojo_rules/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/deeperx/dojo_rules/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/deeperx/dojo_rules/git/refs{/sha}","trees_url":"https://api.github.com/repos/deeperx/dojo_rules/git/trees{/sha}","statuses_url":"https://api.github.com/repos/deeperx/dojo_rules/statuses/{sha}","languages_url":"https://api.github.com/repos/deeperx/dojo_rules/languages","stargazers_url":"https://api.github.com/repos/deeperx/dojo_rules/stargazers","contributors_url":"https://api.github.com/repos/deeperx/dojo_rules/contributors","subscribers_url":"https://api.github.com/repos/deeperx/dojo_rules/subscribers","subscription_url":"https://api.github.com/repos/deeperx/dojo_rules/subscription","commits_url":"https://api.github.com/repos/deeperx/dojo_rules/commits{/sha}","git_commits_url":"https://api.github.com/repos/deeperx/dojo_rules/git/commits{/sha}","comments_url":"https://api.github.com/repos/deeperx/dojo_rules/comments{/number}","issue_comment_url":"https://api.github.com/repos/deeperx/dojo_rules/issues/comments/{number}","contents_url":"https://api.github.com/repos/deeperx/dojo_rules/contents/{+path}","compare_url":"https://api.github.com/repos/deeperx/dojo_rules/compare/{base}...{head}","merges_url":"https://api.github.com/repos/deeperx/dojo_rules/merges","archive_url":"https://api.github.com/repos/deeperx/dojo_rules/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/deeperx/dojo_rules/downloads","issues_url":"https://api.github.com/repos/deeperx/dojo_rules/issues{/number}","pulls_url":"https://api.github.com/repos/deeperx/dojo_rules/pulls{/number}","milestones_url":"https://api.github.com/repos/deeperx/dojo_rules/milestones{/number}","notifications_url":"https://api.github.com/repos/deeperx/dojo_rules/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/deeperx/dojo_rules/labels{/name}","releases_url":"https://api.github.com/repos/deeperx/dojo_rules/releases{/id}","created_at":"2014-12-31T14:41:08Z","updated_at":"2015-01-01T14:57:50Z","pushed_at":"2015-01-01T15:00:18Z","git_url":"git://github.com/deeperx/dojo_rules.git","ssh_url":"git@github.com:deeperx/dojo_rules.git","clone_url":"https://github.com/deeperx/dojo_rules.git","svn_url":"https://github.com/deeperx/dojo_rules","homepage":null,"size":174,"stargazers_count":0,"watchers_count":0,"language":"Ruby","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":true,"forks_count":0,"mirror_url":null,"open_issues_count":2,"forks":0,"open_issues":2,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/deeperx/dojo_rules/pulls/4"},"html":{"href":"https://github.com/deeperx/dojo_rules/pull/4"},"issue":{"href":"https://api.github.com/repos/deeperx/dojo_rules/issues/4"},"comments":{"href":"https://api.github.com/repos/deeperx/dojo_rules/issues/4/comments"},"review_comments":{"href":"https://api.github.com/repos/deeperx/dojo_rules/pulls/4/comments"},"review_comment":{"href":"https://api.github.com/repos/deeperx/dojo_rules/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/deeperx/dojo_rules/pulls/4/commits"},"statuses":{"href":"https://api.github.com/repos/deeperx/dojo_rules/statuses/c81ce0de1788f8a5fafdecc155654733be41587f"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":1,"additions":1,"deletions":0,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:01:58Z"}
,{"id":"2489651982","type":"PushEvent","actor":{"id":3386499,"login":"Antinomy","gravatar_id":"","url":"https://api.github.com/users/Antinomy","avatar_url":"https://avatars.githubusercontent.com/u/3386499?"},"repo":{"id":7832046,"name":"Antinomy/Tech-Doc","url":"https://api.github.com/repos/Antinomy/Tech-Doc"},"payload":{"push_id":536864392,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"b113c65e9dc8445cfe7d637100f9589a8ab1b274","before":"a67caf50eeb8333e8790dd6b3c971162f0762dc2","commits":[{"sha":"b113c65e9dc8445cfe7d637100f9589a8ab1b274","author":{"email":"acd74532b0e480c777ff151bc82d7553aa971a3f@126.com","name":"antinomy"},"message":"2015-01-01-Org with Freemind lisp backup","distinct":true,"url":"https://api.github.com/repos/Antinomy/Tech-Doc/commits/b113c65e9dc8445cfe7d637100f9589a8ab1b274"}]},"public":true,"created_at":"2015-01-01T15:01:58Z"}
,{"id":"2489651984","type":"PushEvent","actor":{"id":911764,"login":"alexz202","gravatar_id":"","url":"https://api.github.com/users/alexz202","avatar_url":"https://avatars.githubusercontent.com/u/911764?"},"repo":{"id":27656543,"name":"alexz202/dedetozp","url":"https://api.github.com/repos/alexz202/dedetozp"},"payload":{"push_id":536864393,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"1e8ae5505c53e0819d4e1abdc81fffd5e9099d56","before":"cff09ed694da214ca438557e2ad13547f62cd0bb","commits":[{"sha":"1e8ae5505c53e0819d4e1abdc81fffd5e9099d56","author":{"email":"5a77cbafd4b2f0f44c6ebad0685da789be2a2c0b@transmension.com","name":"jyzhu"},"message":"complete suggest and talk","distinct":true,"url":"https://api.github.com/repos/alexz202/dedetozp/commits/1e8ae5505c53e0819d4e1abdc81fffd5e9099d56"}]},"public":true,"created_at":"2015-01-01T15:01:59Z"}
,{"id":"2489651985","type":"PullRequestEvent","actor":{"id":378279,"login":"oblador","gravatar_id":"","url":"https://api.github.com/users/oblador","avatar_url":"https://avatars.githubusercontent.com/u/378279?"},"repo":{"id":17359035,"name":"expressjs/errorhandler","url":"https://api.github.com/repos/expressjs/errorhandler"},"payload":{"action":"opened","number":10,"pull_request":{"url":"https://api.github.com/repos/expressjs/errorhandler/pulls/10","id":26743783,"html_url":"https://github.com/expressjs/errorhandler/pull/10","diff_url":"https://github.com/expressjs/errorhandler/pull/10.diff","patch_url":"https://github.com/expressjs/errorhandler/pull/10.patch","issue_url":"https://api.github.com/repos/expressjs/errorhandler/issues/10","number":10,"state":"open","locked":false,"title":"Whole stack trace is outputted in the headline","user":{"login":"oblador","id":378279,"avatar_url":"https://avatars.githubusercontent.com/u/378279?v=3","gravatar_id":"","url":"https://api.github.com/users/oblador","html_url":"https://github.com/oblador","followers_url":"https://api.github.com/users/oblador/followers","following_url":"https://api.github.com/users/oblador/following{/other_user}","gists_url":"https://api.github.com/users/oblador/gists{/gist_id}","starred_url":"https://api.github.com/users/oblador/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/oblador/subscriptions","organizations_url":"https://api.github.com/users/oblador/orgs","repos_url":"https://api.github.com/users/oblador/repos","events_url":"https://api.github.com/users/oblador/events{/privacy}","received_events_url":"https://api.github.com/users/oblador/received_events","type":"User","site_admin":false},"body":"When viewing errors as HTML/in browser the whole stack trace is outputted twice. A regression that I believe was introduced in https://github.com/expressjs/errorhandler/commit/9ae818155de261ef9af74a480a35071b8c1951f4","created_at":"2015-01-01T15:01:59Z","updated_at":"2015-01-01T15:01:59Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/expressjs/errorhandler/pulls/10/commits","review_comments_url":"https://api.github.com/repos/expressjs/errorhandler/pulls/10/comments","review_comment_url":"https://api.github.com/repos/expressjs/errorhandler/pulls/comments/{number}","comments_url":"https://api.github.com/repos/expressjs/errorhandler/issues/10/comments","statuses_url":"https://api.github.com/repos/expressjs/errorhandler/statuses/56cf134cf819d52db8b8b01d881c412b640ef755","head":{"label":"oblador:master","ref":"master","sha":"56cf134cf819d52db8b8b01d881c412b640ef755","user":{"login":"oblador","id":378279,"avatar_url":"https://avatars.githubusercontent.com/u/378279?v=3","gravatar_id":"","url":"https://api.github.com/users/oblador","html_url":"https://github.com/oblador","followers_url":"https://api.github.com/users/oblador/followers","following_url":"https://api.github.com/users/oblador/following{/other_user}","gists_url":"https://api.github.com/users/oblador/gists{/gist_id}","starred_url":"https://api.github.com/users/oblador/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/oblador/subscriptions","organizations_url":"https://api.github.com/users/oblador/orgs","repos_url":"https://api.github.com/users/oblador/repos","events_url":"https://api.github.com/users/oblador/events{/privacy}","received_events_url":"https://api.github.com/users/oblador/received_events","type":"User","site_admin":false},"repo":{"id":28688431,"name":"errorhandler","full_name":"oblador/errorhandler","owner":{"login":"oblador","id":378279,"avatar_url":"https://avatars.githubusercontent.com/u/378279?v=3","gravatar_id":"","url":"https://api.github.com/users/oblador","html_url":"https://github.com/oblador","followers_url":"https://api.github.com/users/oblador/followers","following_url":"https://api.github.com/users/oblador/following{/other_user}","gists_url":"https://api.github.com/users/oblador/gists{/gist_id}","starred_url":"https://api.github.com/users/oblador/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/oblador/subscriptions","organizations_url":"https://api.github.com/users/oblador/orgs","repos_url":"https://api.github.com/users/oblador/repos","events_url":"https://api.github.com/users/oblador/events{/privacy}","received_events_url":"https://api.github.com/users/oblador/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/oblador/errorhandler","description":"Development-only error handler middleware","fork":true,"url":"https://api.github.com/repos/oblador/errorhandler","forks_url":"https://api.github.com/repos/oblador/errorhandler/forks","keys_url":"https://api.github.com/repos/oblador/errorhandler/keys{/key_id}","collaborators_url":"https://api.github.com/repos/oblador/errorhandler/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/oblador/errorhandler/teams","hooks_url":"https://api.github.com/repos/oblador/errorhandler/hooks","issue_events_url":"https://api.github.com/repos/oblador/errorhandler/issues/events{/number}","events_url":"https://api.github.com/repos/oblador/errorhandler/events","assignees_url":"https://api.github.com/repos/oblador/errorhandler/assignees{/user}","branches_url":"https://api.github.com/repos/oblador/errorhandler/branches{/branch}","tags_url":"https://api.github.com/repos/oblador/errorhandler/tags","blobs_url":"https://api.github.com/repos/oblador/errorhandler/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/oblador/errorhandler/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/oblador/errorhandler/git/refs{/sha}","trees_url":"https://api.github.com/repos/oblador/errorhandler/git/trees{/sha}","statuses_url":"https://api.github.com/repos/oblador/errorhandler/statuses/{sha}","languages_url":"https://api.github.com/repos/oblador/errorhandler/languages","stargazers_url":"https://api.github.com/repos/oblador/errorhandler/stargazers","contributors_url":"https://api.github.com/repos/oblador/errorhandler/contributors","subscribers_url":"https://api.github.com/repos/oblador/errorhandler/subscribers","subscription_url":"https://api.github.com/repos/oblador/errorhandler/subscription","commits_url":"https://api.github.com/repos/oblador/errorhandler/commits{/sha}","git_commits_url":"https://api.github.com/repos/oblador/errorhandler/git/commits{/sha}","comments_url":"https://api.github.com/repos/oblador/errorhandler/comments{/number}","issue_comment_url":"https://api.github.com/repos/oblador/errorhandler/issues/comments/{number}","contents_url":"https://api.github.com/repos/oblador/errorhandler/contents/{+path}","compare_url":"https://api.github.com/repos/oblador/errorhandler/compare/{base}...{head}","merges_url":"https://api.github.com/repos/oblador/errorhandler/merges","archive_url":"https://api.github.com/repos/oblador/errorhandler/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/oblador/errorhandler/downloads","issues_url":"https://api.github.com/repos/oblador/errorhandler/issues{/number}","pulls_url":"https://api.github.com/repos/oblador/errorhandler/pulls{/number}","milestones_url":"https://api.github.com/repos/oblador/errorhandler/milestones{/number}","notifications_url":"https://api.github.com/repos/oblador/errorhandler/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/oblador/errorhandler/labels{/name}","releases_url":"https://api.github.com/repos/oblador/errorhandler/releases{/id}","created_at":"2015-01-01T14:49:31Z","updated_at":"2015-01-01T14:58:04Z","pushed_at":"2015-01-01T14:58:03Z","git_url":"git://github.com/oblador/errorhandler.git","ssh_url":"git@github.com:oblador/errorhandler.git","clone_url":"https://github.com/oblador/errorhandler.git","svn_url":"https://github.com/oblador/errorhandler","homepage":"","size":482,"stargazers_count":0,"watchers_count":0,"language":"JavaScript","has_issues":false,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master"}},"base":{"label":"expressjs:master","ref":"master","sha":"7247e256e2fa43176b6b3ab987735bee5121c9ae","user":{"login":"expressjs","id":5658226,"avatar_url":"https://avatars.githubusercontent.com/u/5658226?v=3","gravatar_id":"","url":"https://api.github.com/users/expressjs","html_url":"https://github.com/expressjs","followers_url":"https://api.github.com/users/expressjs/followers","following_url":"https://api.github.com/users/expressjs/following{/other_user}","gists_url":"https://api.github.com/users/expressjs/gists{/gist_id}","starred_url":"https://api.github.com/users/expressjs/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/expressjs/subscriptions","organizations_url":"https://api.github.com/users/expressjs/orgs","repos_url":"https://api.github.com/users/expressjs/repos","events_url":"https://api.github.com/users/expressjs/events{/privacy}","received_events_url":"https://api.github.com/users/expressjs/received_events","type":"Organization","site_admin":false},"repo":{"id":17359035,"name":"errorhandler","full_name":"expressjs/errorhandler","owner":{"login":"expressjs","id":5658226,"avatar_url":"https://avatars.githubusercontent.com/u/5658226?v=3","gravatar_id":"","url":"https://api.github.com/users/expressjs","html_url":"https://github.com/expressjs","followers_url":"https://api.github.com/users/expressjs/followers","following_url":"https://api.github.com/users/expressjs/following{/other_user}","gists_url":"https://api.github.com/users/expressjs/gists{/gist_id}","starred_url":"https://api.github.com/users/expressjs/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/expressjs/subscriptions","organizations_url":"https://api.github.com/users/expressjs/orgs","repos_url":"https://api.github.com/users/expressjs/repos","events_url":"https://api.github.com/users/expressjs/events{/privacy}","received_events_url":"https://api.github.com/users/expressjs/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/expressjs/errorhandler","description":"Development-only error handler middleware","fork":false,"url":"https://api.github.com/repos/expressjs/errorhandler","forks_url":"https://api.github.com/repos/expressjs/errorhandler/forks","keys_url":"https://api.github.com/repos/expressjs/errorhandler/keys{/key_id}","collaborators_url":"https://api.github.com/repos/expressjs/errorhandler/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/expressjs/errorhandler/teams","hooks_url":"https://api.github.com/repos/expressjs/errorhandler/hooks","issue_events_url":"https://api.github.com/repos/expressjs/errorhandler/issues/events{/number}","events_url":"https://api.github.com/repos/expressjs/errorhandler/events","assignees_url":"https://api.github.com/repos/expressjs/errorhandler/assignees{/user}","branches_url":"https://api.github.com/repos/expressjs/errorhandler/branches{/branch}","tags_url":"https://api.github.com/repos/expressjs/errorhandler/tags","blobs_url":"https://api.github.com/repos/expressjs/errorhandler/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/expressjs/errorhandler/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/expressjs/errorhandler/git/refs{/sha}","trees_url":"https://api.github.com/repos/expressjs/errorhandler/git/trees{/sha}","statuses_url":"https://api.github.com/repos/expressjs/errorhandler/statuses/{sha}","languages_url":"https://api.github.com/repos/expressjs/errorhandler/languages","stargazers_url":"https://api.github.com/repos/expressjs/errorhandler/stargazers","contributors_url":"https://api.github.com/repos/expressjs/errorhandler/contributors","subscribers_url":"https://api.github.com/repos/expressjs/errorhandler/subscribers","subscription_url":"https://api.github.com/repos/expressjs/errorhandler/subscription","commits_url":"https://api.github.com/repos/expressjs/errorhandler/commits{/sha}","git_commits_url":"https://api.github.com/repos/expressjs/errorhandler/git/commits{/sha}","comments_url":"https://api.github.com/repos/expressjs/errorhandler/comments{/number}","issue_comment_url":"https://api.github.com/repos/expressjs/errorhandler/issues/comments/{number}","contents_url":"https://api.github.com/repos/expressjs/errorhandler/contents/{+path}","compare_url":"https://api.github.com/repos/expressjs/errorhandler/compare/{base}...{head}","merges_url":"https://api.github.com/repos/expressjs/errorhandler/merges","archive_url":"https://api.github.com/repos/expressjs/errorhandler/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/expressjs/errorhandler/downloads","issues_url":"https://api.github.com/repos/expressjs/errorhandler/issues{/number}","pulls_url":"https://api.github.com/repos/expressjs/errorhandler/pulls{/number}","milestones_url":"https://api.github.com/repos/expressjs/errorhandler/milestones{/number}","notifications_url":"https://api.github.com/repos/expressjs/errorhandler/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/expressjs/errorhandler/labels{/name}","releases_url":"https://api.github.com/repos/expressjs/errorhandler/releases{/id}","created_at":"2014-03-03T07:58:51Z","updated_at":"2014-12-31T16:32:44Z","pushed_at":"2014-12-31T16:32:45Z","git_url":"git://github.com/expressjs/errorhandler.git","ssh_url":"git@github.com:expressjs/errorhandler.git","clone_url":"https://github.com/expressjs/errorhandler.git","svn_url":"https://github.com/expressjs/errorhandler","homepage":"","size":482,"stargazers_count":50,"watchers_count":50,"language":"JavaScript","has_issues":true,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":11,"mirror_url":null,"open_issues_count":1,"forks":11,"open_issues":1,"watchers":50,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/expressjs/errorhandler/pulls/10"},"html":{"href":"https://github.com/expressjs/errorhandler/pull/10"},"issue":{"href":"https://api.github.com/repos/expressjs/errorhandler/issues/10"},"comments":{"href":"https://api.github.com/repos/expressjs/errorhandler/issues/10/comments"},"review_comments":{"href":"https://api.github.com/repos/expressjs/errorhandler/pulls/10/comments"},"review_comment":{"href":"https://api.github.com/repos/expressjs/errorhandler/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/expressjs/errorhandler/pulls/10/commits"},"statuses":{"href":"https://api.github.com/repos/expressjs/errorhandler/statuses/56cf134cf819d52db8b8b01d881c412b640ef755"}},"merged":false,"mergeable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"commits":1,"additions":1,"deletions":1,"changed_files":1}},"public":true,"created_at":"2015-01-01T15:01:59Z","org":{"id":5658226,"login":"expressjs","gravatar_id":"","url":"https://api.github.com/orgs/expressjs","avatar_url":"https://avatars.githubusercontent.com/u/5658226?"}}
,{"id":"2489651990","type":"CreateEvent","actor":{"id":10364582,"login":"AxelRL","gravatar_id":"","url":"https://api.github.com/users/AxelRL","avatar_url":"https://avatars.githubusercontent.com/u/10364582?"},"repo":{"id":28688617,"name":"AxelRL/AxelRL.github.io","url":"https://api.github.com/repos/AxelRL/AxelRL.github.io"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"Min hemsida","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:02:00Z"}
,{"id":"2489651991","type":"WatchEvent","actor":{"id":445920,"login":"gnarmis","gravatar_id":"","url":"https://api.github.com/users/gnarmis","avatar_url":"https://avatars.githubusercontent.com/u/445920?"},"repo":{"id":3278889,"name":"ddollar/heroku-buildpack-multi","url":"https://api.github.com/repos/ddollar/heroku-buildpack-multi"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:02:00Z"}
,{"id":"2489651992","type":"PushEvent","actor":{"id":1643245,"login":"cdpython","gravatar_id":"","url":"https://api.github.com/users/cdpython","avatar_url":"https://avatars.githubusercontent.com/u/1643245?"},"repo":{"id":28260344,"name":"cdpython/blog","url":"https://api.github.com/repos/cdpython/blog"},"payload":{"push_id":536864397,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"0561a607cbcb0acde87786929531a75d0b55b6f0","before":"9ebf416a1e3e195dcbf1067d312f7e222c2b803d","commits":[{"sha":"0561a607cbcb0acde87786929531a75d0b55b6f0","author":{"email":"71bc4425870fbe857f135fc454820feec4c7d880@gmail.com","name":"cdpython"},"message":"rebuilding site 2015년 1월 2일 금요일 00시 01분 56초 KST","distinct":true,"url":"https://api.github.com/repos/cdpython/blog/commits/0561a607cbcb0acde87786929531a75d0b55b6f0"}]},"public":true,"created_at":"2015-01-01T15:02:00Z"}
,{"id":"2489651993","type":"PushEvent","actor":{"id":3353932,"login":"nouon","gravatar_id":"","url":"https://api.github.com/users/nouon","avatar_url":"https://avatars.githubusercontent.com/u/3353932?"},"repo":{"id":27077255,"name":"nouon/weiyi","url":"https://api.github.com/repos/nouon/weiyi"},"payload":{"push_id":536864399,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"9a36c8b2cf97643057911af39e75ab68eb3b5f79","before":"cb3a1385760a271268717eb7177852d680dc922e","commits":[{"sha":"9a36c8b2cf97643057911af39e75ab68eb3b5f79","author":{"email":"c989e75850a1ccf59d56ede81e5eb3503bb790c1@163.com","name":"nouon"},"message":"添加...","distinct":true,"url":"https://api.github.com/repos/nouon/weiyi/commits/9a36c8b2cf97643057911af39e75ab68eb3b5f79"}]},"public":true,"created_at":"2015-01-01T15:02:00Z"}
,{"id":"2489651994","type":"PushEvent","actor":{"id":1547799,"login":"poletti-marco","gravatar_id":"","url":"https://api.github.com/users/poletti-marco","avatar_url":"https://avatars.githubusercontent.com/u/1547799?"},"repo":{"id":20900043,"name":"google/fruit","url":"https://api.github.com/repos/google/fruit"},"payload":{"push_id":536864398,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"3ced78a6ff33e6a360f0c3e2616d9a8ad62ad058","before":"d8943a8dbf2748ba6933d4f3f3985e46b4ae4790","commits":[{"sha":"3ced78a6ff33e6a360f0c3e2616d9a8ad62ad058","author":{"email":"5c48946a92a70191d9167ad4317a677296eb6df5@gmail.com","name":"Marco Poletti"},"message":"Fix expected error message in the type_already_bound2 test. The reported error changed due to the now-deferred registerConstructor() binding.","distinct":true,"url":"https://api.github.com/repos/google/fruit/commits/3ced78a6ff33e6a360f0c3e2616d9a8ad62ad058"}]},"public":true,"created_at":"2015-01-01T15:02:00Z","org":{"id":1342004,"login":"google","gravatar_id":"","url":"https://api.github.com/orgs/google","avatar_url":"https://avatars.githubusercontent.com/u/1342004?"}}
,{"id":"2489651997","type":"WatchEvent","actor":{"id":86844,"login":"hkf","gravatar_id":"","url":"https://api.github.com/users/hkf","avatar_url":"https://avatars.githubusercontent.com/u/86844?"},"repo":{"id":28229924,"name":"inf0rmer/blanket","url":"https://api.github.com/repos/inf0rmer/blanket"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:02:01Z"}
,{"id":"2489651999","type":"IssuesEvent","actor":{"id":110953,"login":"addyosmani","gravatar_id":"","url":"https://api.github.com/users/addyosmani","avatar_url":"https://avatars.githubusercontent.com/u/110953?"},"repo":{"id":25126737,"name":"addyosmani/a11y","url":"https://api.github.com/repos/addyosmani/a11y"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/addyosmani/a11y/issues/26","labels_url":"https://api.github.com/repos/addyosmani/a11y/issues/26/labels{/name}","comments_url":"https://api.github.com/repos/addyosmani/a11y/issues/26/comments","events_url":"https://api.github.com/repos/addyosmani/a11y/issues/26/events","html_url":"https://github.com/addyosmani/a11y/issues/26","id":53221371,"number":26,"title":"Improve auditing for webapps","user":{"login":"addyosmani","id":110953,"avatar_url":"https://avatars.githubusercontent.com/u/110953?v=3","gravatar_id":"","url":"https://api.github.com/users/addyosmani","html_url":"https://github.com/addyosmani","followers_url":"https://api.github.com/users/addyosmani/followers","following_url":"https://api.github.com/users/addyosmani/following{/other_user}","gists_url":"https://api.github.com/users/addyosmani/gists{/gist_id}","starred_url":"https://api.github.com/users/addyosmani/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/addyosmani/subscriptions","organizations_url":"https://api.github.com/users/addyosmani/orgs","repos_url":"https://api.github.com/users/addyosmani/repos","events_url":"https://api.github.com/users/addyosmani/events{/privacy}","received_events_url":"https://api.github.com/users/addyosmani/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":0,"created_at":"2015-01-01T15:02:01Z","updated_at":"2015-01-01T15:02:01Z","closed_at":null,"body":"When using the Chrome Accessibility DevTools extension, pages such as [this Angular Todo](http://todomvc.com/examples/angularjs/#/) app will display severity issues that are not reported by A11y when conducting an audit.\r\n\r\nExample: \r\n![](http://i.imgur.com/wROYEW7.png)\r\n\r\nvs:\r\n\r\n![](http://i.imgur.com/iCs2pet.png)\r\n\r\nMy current theory is that we're not giving the page sufficient time to complete JS execution so not all content is present and in an auditable state.\r\n\r\nAfter experimenting with adding a custom timeout (similar to [this](https://github.com/kevva/screenshot-stream/blob/681d34fd0c5e9be0a894397e8d9a1f6841953810/lib/index.js#L156)) and playing with timeouts of differing values, this doesn't appear to improve our ability to report back on such issues.\r\n\r\nThese issues aren't specific to this module (as far as I can tell). I've been able to repro the same with https://github.com/GoogleChrome/accessibility-developer-tools. Looking into this further."}},"public":true,"created_at":"2015-01-01T15:02:01Z"}
,{"id":"2489652006","type":"PushEvent","actor":{"id":9640405,"login":"kslesik","gravatar_id":"","url":"https://api.github.com/users/kslesik","avatar_url":"https://avatars.githubusercontent.com/u/9640405?"},"repo":{"id":26402386,"name":"SlowlyTeam/BulletinBoard","url":"https://api.github.com/repos/SlowlyTeam/BulletinBoard"},"payload":{"push_id":536864404,"size":1,"distinct_size":1,"ref":"refs/heads/client","head":"35e7783373a25ad0112f57d196e11a007f6137b7","before":"0fe1ce2cf69a88aff9cc9b98f5331f56194b0afd","commits":[{"sha":"35e7783373a25ad0112f57d196e11a007f6137b7","author":{"email":"929d7eff56a9d4d371ecc704adae6b3bba60762d@gmail.com","name":"Maxym"},"message":"Dodane automatyczne pobieranie ogłoszeń z ostatnio przeglądanej przez użytkownika kategorii.","distinct":true,"url":"https://api.github.com/repos/SlowlyTeam/BulletinBoard/commits/35e7783373a25ad0112f57d196e11a007f6137b7"}]},"public":true,"created_at":"2015-01-01T15:02:02Z","org":{"id":9589825,"login":"SlowlyTeam","gravatar_id":"","url":"https://api.github.com/orgs/SlowlyTeam","avatar_url":"https://avatars.githubusercontent.com/u/9589825?"}}
,{"id":"2489652009","type":"PushEvent","actor":{"id":2002879,"login":"sunilrebel","gravatar_id":"","url":"https://api.github.com/users/sunilrebel","avatar_url":"https://avatars.githubusercontent.com/u/2002879?"},"repo":{"id":24765340,"name":"sunilrebel/spann-jira","url":"https://api.github.com/repos/sunilrebel/spann-jira"},"payload":{"push_id":536864405,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"fe2877c49fc640a7b1e97dca878c399da3dca4b4","before":"545d8896469040711d86d5d1ed5a57b0df827cc7","commits":[{"sha":"fe2877c49fc640a7b1e97dca878c399da3dca4b4","author":{"email":"c772f21077cfc2e869c8f28543e85420b1160f2b@gmail.com","name":"Sunil Kumar"},"message":"Added custom fields, extraction logic, list page listener, & UI buttons. Corrected separated list processing algo.","distinct":true,"url":"https://api.github.com/repos/sunilrebel/spann-jira/commits/fe2877c49fc640a7b1e97dca878c399da3dca4b4"}]},"public":true,"created_at":"2015-01-01T15:02:02Z"}
,{"id":"2489652010","type":"WatchEvent","actor":{"id":1089814,"login":"muhaha03","gravatar_id":"","url":"https://api.github.com/users/muhaha03","avatar_url":"https://avatars.githubusercontent.com/u/1089814?"},"repo":{"id":13645881,"name":"drrb/java-rust-example","url":"https://api.github.com/repos/drrb/java-rust-example"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:02:02Z"}
,{"id":"2489652011","type":"WatchEvent","actor":{"id":2334552,"login":"mattfelsen","gravatar_id":"","url":"https://api.github.com/users/mattfelsen","avatar_url":"https://avatars.githubusercontent.com/u/2334552?"},"repo":{"id":26779760,"name":"raspberry-node/node-rpi-ws281x-native","url":"https://api.github.com/repos/raspberry-node/node-rpi-ws281x-native"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:02:03Z","org":{"id":9833414,"login":"raspberry-node","gravatar_id":"","url":"https://api.github.com/orgs/raspberry-node","avatar_url":"https://avatars.githubusercontent.com/u/9833414?"}}
,{"id":"2489652012","type":"IssueCommentEvent","actor":{"id":114942,"login":"adamkennedy","gravatar_id":"","url":"https://api.github.com/users/adamkennedy","avatar_url":"https://avatars.githubusercontent.com/u/114942?"},"repo":{"id":15040249,"name":"adamkennedy/PPI","url":"https://api.github.com/repos/adamkennedy/PPI"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/adamkennedy/PPI/issues/158","labels_url":"https://api.github.com/repos/adamkennedy/PPI/issues/158/labels{/name}","comments_url":"https://api.github.com/repos/adamkennedy/PPI/issues/158/comments","events_url":"https://api.github.com/repos/adamkennedy/PPI/issues/158/events","html_url":"https://github.com/adamkennedy/PPI/issues/158","id":53169287,"number":158,"title":"whitespace not allowed between sigil and identifier","user":{"login":"moregan","id":799139,"avatar_url":"https://avatars.githubusercontent.com/u/799139?v=3","gravatar_id":"","url":"https://api.github.com/users/moregan","html_url":"https://github.com/moregan","followers_url":"https://api.github.com/users/moregan/followers","following_url":"https://api.github.com/users/moregan/following{/other_user}","gists_url":"https://api.github.com/users/moregan/gists{/gist_id}","starred_url":"https://api.github.com/users/moregan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/moregan/subscriptions","organizations_url":"https://api.github.com/users/moregan/orgs","repos_url":"https://api.github.com/users/moregan/repos","events_url":"https://api.github.com/users/moregan/events{/privacy}","received_events_url":"https://api.github.com/users/moregan/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/adamkennedy/PPI/labels/bug","name":"bug","color":"fc2929"},{"url":"https://api.github.com/repos/adamkennedy/PPI/labels/misparse","name":"misparse","color":"5319e7"}],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":3,"created_at":"2014-12-31T06:17:56Z","updated_at":"2015-01-01T15:02:03Z","closed_at":null,"body":"Perl allows whitespace between a sigil and its identifier, but PPI doesn't support it. ``@ foo`` is the same as ``@foo`` and should parse as PPI::Token::Symbol, but doesn't:\r\n\r\n```\r\n$ ppidump '@ foo'\r\n PPI::Document\r\n PPI::Statement\r\n[ 1, 1, 1 ] PPI::Token::Cast '@'\r\n[ 1, 3, 3 ] PPI::Token::Word 'foo'\r\n```"},"comment":{"url":"https://api.github.com/repos/adamkennedy/PPI/issues/comments/68488530","html_url":"https://github.com/adamkennedy/PPI/issues/158#issuecomment-68488530","issue_url":"https://api.github.com/repos/adamkennedy/PPI/issues/158","id":68488530,"user":{"login":"adamkennedy","id":114942,"avatar_url":"https://avatars.githubusercontent.com/u/114942?v=3","gravatar_id":"","url":"https://api.github.com/users/adamkennedy","html_url":"https://github.com/adamkennedy","followers_url":"https://api.github.com/users/adamkennedy/followers","following_url":"https://api.github.com/users/adamkennedy/following{/other_user}","gists_url":"https://api.github.com/users/adamkennedy/gists{/gist_id}","starred_url":"https://api.github.com/users/adamkennedy/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/adamkennedy/subscriptions","organizations_url":"https://api.github.com/users/adamkennedy/orgs","repos_url":"https://api.github.com/users/adamkennedy/repos","events_url":"https://api.github.com/users/adamkennedy/events{/privacy}","received_events_url":"https://api.github.com/users/adamkennedy/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:02:03Z","updated_at":"2015-01-01T15:02:03Z","body":"Probably. There are other modern equivalents, I think dagolden has a cpan\r\nscanner and then I wrote a derivative of it. So it might have a different\r\nname\r\nOn Jan 1, 2015 5:54 AM, \"moregan\" <notifications@github.com> wrote:\r\n\r\n> Had to go to backpan to find PPI::Tinderbox, and the latest there is 0.08.\r\n> Was that the last release (January 2005)?\r\n>\r\n> —\r\n> Reply to this email directly or view it on GitHub\r\n> <https://github.com/adamkennedy/PPI/issues/158#issuecomment-68461760>.\r\n>"}},"public":true,"created_at":"2015-01-01T15:02:03Z"}
,{"id":"2489652013","type":"PushEvent","actor":{"id":5728403,"login":"patrick-hudson","gravatar_id":"","url":"https://api.github.com/users/patrick-hudson","avatar_url":"https://avatars.githubusercontent.com/u/5728403?"},"repo":{"id":25392255,"name":"patrick-hudson/EggDrop","url":"https://api.github.com/repos/patrick-hudson/EggDrop"},"payload":{"push_id":536864406,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"8806028a516de60cbbcbee90bcef66080540a826","before":"a1328169c4a3e15352c9a4d643364441ffe5bc9d","commits":[{"sha":"8806028a516de60cbbcbee90bcef66080540a826","author":{"email":"cbb7353e6d953ef360baf960c122346276c6e320@hudson.bz","name":"Patrick Hudson"},"message":"Scripted auto-commit on change (2015-01-01 10:02:00) by gitwatch.sh","distinct":true,"url":"https://api.github.com/repos/patrick-hudson/EggDrop/commits/8806028a516de60cbbcbee90bcef66080540a826"}]},"public":true,"created_at":"2015-01-01T15:02:03Z"}
,{"id":"2489652015","type":"PushEvent","actor":{"id":10330245,"login":"gnenbu","gravatar_id":"","url":"https://api.github.com/users/gnenbu","avatar_url":"https://avatars.githubusercontent.com/u/10330245?"},"repo":{"id":28562100,"name":"gnenbu/gn_enbu_chs","url":"https://api.github.com/repos/gnenbu/gn_enbu_chs"},"payload":{"push_id":536864407,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"b6253d8186fc72d75a793bc065efa77186b81371","before":"d5e9341fb275756d8b03040e8347510e0ccd007e","commits":[{"sha":"b6253d8186fc72d75a793bc065efa77186b81371","author":{"email":"6b83eded995a0663a8581c4317a76bfbfaf34437@xiaoshitou1","name":"xiaoshitou"},"message":"Translated by 土妹子","distinct":true,"url":"https://api.github.com/repos/gnenbu/gn_enbu_chs/commits/b6253d8186fc72d75a793bc065efa77186b81371"}]},"public":true,"created_at":"2015-01-01T15:02:03Z"}
,{"id":"2489652017","type":"PushEvent","actor":{"id":5010245,"login":"shimbara","gravatar_id":"","url":"https://api.github.com/users/shimbara","avatar_url":"https://avatars.githubusercontent.com/u/5010245?"},"repo":{"id":28655609,"name":"shimbara/jersey_rest_ws","url":"https://api.github.com/repos/shimbara/jersey_rest_ws"},"payload":{"push_id":536864409,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"905a5a52ea5f193c1a3ca3181801f78d0f643bd2","before":"655b1232742f0cc6ecd63e4d9b33ed22ebe680cb","commits":[{"sha":"905a5a52ea5f193c1a3ca3181801f78d0f643bd2","author":{"email":"665b1e12a2c358d92cffe557d2cb0f0638ff2cfc@mac.com","name":"Tomoyuki Shimbara"},"message":"実行可能WarでのJersey動作確認が取れた","distinct":true,"url":"https://api.github.com/repos/shimbara/jersey_rest_ws/commits/905a5a52ea5f193c1a3ca3181801f78d0f643bd2"}]},"public":true,"created_at":"2015-01-01T15:02:03Z"}
,{"id":"2489652018","type":"PushEvent","actor":{"id":972584,"login":"jquast","gravatar_id":"","url":"https://api.github.com/users/jquast","avatar_url":"https://avatars.githubusercontent.com/u/972584?"},"repo":{"id":2188099,"name":"jquast/x84","url":"https://api.github.com/repos/jquast/x84"},"payload":{"push_id":536864410,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"d584abbd7fbb76ad62050a432aba74cacd912814","before":"06d777699130f1aceacb62c3e34ff419b4a5a654","commits":[{"sha":"d584abbd7fbb76ad62050a432aba74cacd912814","author":{"email":"1a73af9e7ae00182733b2292511b814be66f065f@jeffquast.com","name":"jquast"},"message":"bin/x84 should just honor virtualenv, use vanilla 'python'","distinct":true,"url":"https://api.github.com/repos/jquast/x84/commits/d584abbd7fbb76ad62050a432aba74cacd912814"}]},"public":true,"created_at":"2015-01-01T15:02:04Z"}
,{"id":"2489652019","type":"PushEvent","actor":{"id":6860925,"login":"quattor-releaser","gravatar_id":"","url":"https://api.github.com/users/quattor-releaser","avatar_url":"https://avatars.githubusercontent.com/u/6860925?"},"repo":{"id":6455642,"name":"quattor/release","url":"https://api.github.com/repos/quattor/release"},"payload":{"push_id":536864411,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"c8549b8c6d54df39083a555b6298c557243ce001","before":"b84ffcbb7a148691f3f73dbb62ed80c158c4edd5","commits":[{"sha":"c8549b8c6d54df39083a555b6298c557243ce001","author":{"email":"0c186edac981671c5ec170ef64290f0bec540151@users.noreply.github.com","name":"Quattor Releaser"},"message":"Updating backlog","distinct":true,"url":"https://api.github.com/repos/quattor/release/commits/c8549b8c6d54df39083a555b6298c557243ce001"}]},"public":true,"created_at":"2015-01-01T15:02:04Z","org":{"id":1557169,"login":"quattor","gravatar_id":"","url":"https://api.github.com/orgs/quattor","avatar_url":"https://avatars.githubusercontent.com/u/1557169?"}}
,{"id":"2489652021","type":"CommitCommentEvent","actor":{"id":1277095,"login":"Dmitry-Me","gravatar_id":"","url":"https://api.github.com/users/Dmitry-Me","avatar_url":"https://avatars.githubusercontent.com/u/1277095?"},"repo":{"id":26190201,"name":"JayXon/tinyxml2","url":"https://api.github.com/repos/JayXon/tinyxml2"},"payload":{"comment":{"url":"https://api.github.com/repos/JayXon/tinyxml2/comments/9132424","html_url":"https://github.com/JayXon/tinyxml2/commit/b026d464ab5876824b23becfb2745ef7fdddd420#commitcomment-9132424","id":9132424,"user":{"login":"Dmitry-Me","id":1277095,"avatar_url":"https://avatars.githubusercontent.com/u/1277095?v=3","gravatar_id":"","url":"https://api.github.com/users/Dmitry-Me","html_url":"https://github.com/Dmitry-Me","followers_url":"https://api.github.com/users/Dmitry-Me/followers","following_url":"https://api.github.com/users/Dmitry-Me/following{/other_user}","gists_url":"https://api.github.com/users/Dmitry-Me/gists{/gist_id}","starred_url":"https://api.github.com/users/Dmitry-Me/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Dmitry-Me/subscriptions","organizations_url":"https://api.github.com/users/Dmitry-Me/orgs","repos_url":"https://api.github.com/users/Dmitry-Me/repos","events_url":"https://api.github.com/users/Dmitry-Me/events{/privacy}","received_events_url":"https://api.github.com/users/Dmitry-Me/received_events","type":"User","site_admin":false},"position":82,"line":896,"path":"tinyxml2.cpp","commit_id":"b026d464ab5876824b23becfb2745ef7fdddd420","created_at":"2015-01-01T15:02:05Z","updated_at":"2015-01-01T15:02:05Z","body":"The original idea of making an if-else chain was good, but your change was converting the originally unnatural checks sequence into another unnatural checks sequence. I submitted another PR which puts checks in a more optimistic order https://github.com/leethomason/tinyxml2/pull/260 Thanks for the idea."}},"public":true,"created_at":"2015-01-01T15:02:05Z"}
,{"id":"2489652024","type":"PushEvent","actor":{"id":4377685,"login":"danielgp","gravatar_id":"","url":"https://api.github.com/users/danielgp","avatar_url":"https://avatars.githubusercontent.com/u/4377685?"},"repo":{"id":28688005,"name":"danielgp/salariu","url":"https://api.github.com/repos/danielgp/salariu"},"payload":{"push_id":536864412,"size":6,"distinct_size":6,"ref":"refs/heads/master","head":"58c022e313ecedae1f6df589472b2a43e5f8a6ec","before":"afa80655eab2ec4139b8015da8b6de002ec28baa","commits":[{"sha":"c7b2eb1104c0f6078f83d4c6f38f140390e565aa","author":{"email":"a5cd733f0a097328f9c1767a06195bfd79c912cd@gmail.com","name":"Daniel Popiniuc"},"message":"just added few test for code compliance","distinct":true,"url":"https://api.github.com/repos/danielgp/salariu/commits/c7b2eb1104c0f6078f83d4c6f38f140390e565aa"},{"sha":"cab35bbe5f6c7e09b9b711f29a5c1ea14fe6c005","author":{"email":"a5cd733f0a097328f9c1767a06195bfd79c912cd@gmail.com","name":"Daniel Popiniuc"},"message":"replace e_reg with preg_match and re-run the tests","distinct":true,"url":"https://api.github.com/repos/danielgp/salariu/commits/cab35bbe5f6c7e09b9b711f29a5c1ea14fe6c005"},{"sha":"36775129052c5be530fe05323459eade2ea425d3","author":{"email":"a5cd733f0a097328f9c1767a06195bfd79c912cd@gmail.com","name":"Daniel Popiniuc"},"message":"added a composer file","distinct":true,"url":"https://api.github.com/repos/danielgp/salariu/commits/36775129052c5be530fe05323459eade2ea425d3"},{"sha":"53ccee25b7d87b5ebac28f81a3cca4588b0555e4","author":{"email":"a5cd733f0a097328f9c1767a06195bfd79c912cd@gmail.com","name":"Daniel Popiniuc"},"message":"adjusted a few EOL to unix style","distinct":true,"url":"https://api.github.com/repos/danielgp/salariu/commits/53ccee25b7d87b5ebac28f81a3cca4588b0555e4"},{"sha":"2c37c600b2df8fb15c4a5fb40be52c1aafa9e945","author":{"email":"a5cd733f0a097328f9c1767a06195bfd79c912cd@gmail.com","name":"Daniel Popiniuc"},"message":"Merge branch 'master' of https://github.com/danielgp/salariu","distinct":true,"url":"https://api.github.com/repos/danielgp/salariu/commits/2c37c600b2df8fb15c4a5fb40be52c1aafa9e945"},{"sha":"58c022e313ecedae1f6df589472b2a43e5f8a6ec","author":{"email":"a5cd733f0a097328f9c1767a06195bfd79c912cd@gmail.com","name":"Daniel Popiniuc"},"message":"added a GIT ignore file","distinct":true,"url":"https://api.github.com/repos/danielgp/salariu/commits/58c022e313ecedae1f6df589472b2a43e5f8a6ec"}]},"public":true,"created_at":"2015-01-01T15:02:06Z"}
,{"id":"2489652025","type":"CreateEvent","actor":{"id":2870672,"login":"MrWitt","gravatar_id":"","url":"https://api.github.com/users/MrWitt","avatar_url":"https://avatars.githubusercontent.com/u/2870672?"},"repo":{"id":28688146,"name":"MrWitt/floatingCar","url":"https://api.github.com/repos/MrWitt/floatingCar"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"sense emergency brakes with accelerometer","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:02:06Z"}
,{"id":"2489652028","type":"PushEvent","actor":{"id":3117345,"login":"domhnallohanlon","gravatar_id":"","url":"https://api.github.com/users/domhnallohanlon","avatar_url":"https://avatars.githubusercontent.com/u/3117345?"},"repo":{"id":26559048,"name":"domhnallohanlon/ctyiweb","url":"https://api.github.com/repos/domhnallohanlon/ctyiweb"},"payload":{"push_id":536864415,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"71bafe94fc4fe3e7bbd4e44c56ec4ea765c7ed6e","before":"95ea9c7d053e50a333165ee0e32a61ce3b7862fc","commits":[{"sha":"71bafe94fc4fe3e7bbd4e44c56ec4ea765c7ed6e","author":{"email":"f275d306152dec5fcdedf4ec28eab57372fca7b8@gmail.com","name":"Domhnall O Hanlon"},"message":"tidying up code snippets","distinct":true,"url":"https://api.github.com/repos/domhnallohanlon/ctyiweb/commits/71bafe94fc4fe3e7bbd4e44c56ec4ea765c7ed6e"}]},"public":true,"created_at":"2015-01-01T15:02:06Z"}
,{"id":"2489652030","type":"PushEvent","actor":{"id":127232,"login":"mmakowski","gravatar_id":"","url":"https://api.github.com/users/mmakowski","avatar_url":"https://avatars.githubusercontent.com/u/127232?"},"repo":{"id":5829803,"name":"mmakowski/wikidata","url":"https://api.github.com/repos/mmakowski/wikidata"},"payload":{"push_id":536864416,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"608e0e4ce126a47f5e3eb69b4cd16170b051c138","before":"9b39a7c162060e15c5b39134a2476e20af0a72d8","commits":[{"sha":"608e0e4ce126a47f5e3eb69b4cd16170b051c138","author":{"email":"ae2f50d1a2c2b8573753fa742ddd1c24adf6c08f@gmail.com","name":"mmakowski"},"message":"todo","distinct":true,"url":"https://api.github.com/repos/mmakowski/wikidata/commits/608e0e4ce126a47f5e3eb69b4cd16170b051c138"}]},"public":true,"created_at":"2015-01-01T15:02:06Z"}
,{"id":"2489652032","type":"PushEvent","actor":{"id":7472151,"login":"qinwf","gravatar_id":"","url":"https://api.github.com/users/qinwf","avatar_url":"https://avatars.githubusercontent.com/u/7472151?"},"repo":{"id":28625538,"name":"qinwf/Chinese.jl","url":"https://api.github.com/repos/qinwf/Chinese.jl"},"payload":{"push_id":536864418,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"fadd3e9936ea6872c9206a0b3fbff10ec81a031f","before":"dcd483c46b2013794fe2fa988d7d295c518e63cd","commits":[{"sha":"fadd3e9936ea6872c9206a0b3fbff10ec81a031f","author":{"email":"1d6e1cf70ec6f9ab28d3ea4b27a49a77654d370e@qinwenfeng.com","name":"qinwf"},"message":"more Base","distinct":true,"url":"https://api.github.com/repos/qinwf/Chinese.jl/commits/fadd3e9936ea6872c9206a0b3fbff10ec81a031f"}]},"public":true,"created_at":"2015-01-01T15:02:06Z"}
,{"id":"2489652034","type":"PushEvent","actor":{"id":1301531,"login":"stgm","gravatar_id":"","url":"https://api.github.com/users/stgm","avatar_url":"https://avatars.githubusercontent.com/u/1301531?"},"repo":{"id":7255193,"name":"uva/course-site","url":"https://api.github.com/repos/uva/course-site"},"payload":{"push_id":536864419,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"d23ce22be8a59a83c1b2ae2128c03313ade4a445","before":"a9bd5dc8c2180cdbc5278b913313af68869b5efe","commits":[{"sha":"d23ce22be8a59a83c1b2ae2128c03313ade4a445","author":{"email":"10ae63b69ae5ab71b07f9e64004a0207f53fea34@stgm.nl","name":"Martijn Stegeman"},"message":"mailer settings from env","distinct":true,"url":"https://api.github.com/repos/uva/course-site/commits/d23ce22be8a59a83c1b2ae2128c03313ade4a445"}]},"public":true,"created_at":"2015-01-01T15:02:07Z","org":{"id":1375415,"login":"uva","gravatar_id":"","url":"https://api.github.com/orgs/uva","avatar_url":"https://avatars.githubusercontent.com/u/1375415?"}}
,{"id":"2489652035","type":"PushEvent","actor":{"id":1643245,"login":"cdpython","gravatar_id":"","url":"https://api.github.com/users/cdpython","avatar_url":"https://avatars.githubusercontent.com/u/1643245?"},"repo":{"id":28496455,"name":"cdpython/cdpython.github.io","url":"https://api.github.com/repos/cdpython/cdpython.github.io"},"payload":{"push_id":536864420,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"3dd0947cb4c87b47261123124f174c8c7bab232f","before":"047f64b8219162e85ec2e6b5555dd6f64ccbb5e3","commits":[{"sha":"3dd0947cb4c87b47261123124f174c8c7bab232f","author":{"email":"71bc4425870fbe857f135fc454820feec4c7d880@gmail.com","name":"cdpython"},"message":"rebuilding site 2015년 1월 2일 금요일 00시 01분 56초 KST","distinct":true,"url":"https://api.github.com/repos/cdpython/cdpython.github.io/commits/3dd0947cb4c87b47261123124f174c8c7bab232f"}]},"public":true,"created_at":"2015-01-01T15:02:07Z"}
,{"id":"2489652036","type":"PullRequestEvent","actor":{"id":1616846,"login":"marco-c","gravatar_id":"","url":"https://api.github.com/users/marco-c","avatar_url":"https://avatars.githubusercontent.com/u/1616846?"},"repo":{"id":21724513,"name":"andreasgal/j2me.js","url":"https://api.github.com/repos/andreasgal/j2me.js"},"payload":{"action":"closed","number":807,"pull_request":{"url":"https://api.github.com/repos/andreasgal/j2me.js/pulls/807","id":26737931,"html_url":"https://github.com/andreasgal/j2me.js/pull/807","diff_url":"https://github.com/andreasgal/j2me.js/pull/807.diff","patch_url":"https://github.com/andreasgal/j2me.js/pull/807.patch","issue_url":"https://api.github.com/repos/andreasgal/j2me.js/issues/807","number":807,"state":"closed","locked":false,"title":"enable FileConnection TCK tests in automation","user":{"login":"mykmelez","id":305455,"avatar_url":"https://avatars.githubusercontent.com/u/305455?v=3","gravatar_id":"","url":"https://api.github.com/users/mykmelez","html_url":"https://github.com/mykmelez","followers_url":"https://api.github.com/users/mykmelez/followers","following_url":"https://api.github.com/users/mykmelez/following{/other_user}","gists_url":"https://api.github.com/users/mykmelez/gists{/gist_id}","starred_url":"https://api.github.com/users/mykmelez/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mykmelez/subscriptions","organizations_url":"https://api.github.com/users/mykmelez/orgs","repos_url":"https://api.github.com/users/mykmelez/repos","events_url":"https://api.github.com/users/mykmelez/events{/privacy}","received_events_url":"https://api.github.com/users/mykmelez/received_events","type":"User","site_admin":false},"body":"This branch enables the FileConnection TCK unit tests in automation, excluding those tests that don't yet pass because we haven't implemented the functionality they test or because they require manual interaction.\r\n","created_at":"2014-12-31T23:00:34Z","updated_at":"2015-01-01T15:02:07Z","closed_at":"2015-01-01T15:02:07Z","merged_at":"2015-01-01T15:02:07Z","merge_commit_sha":"e81389b9f60fe68b99c5fdf2a750059c7a2e788b","assignee":null,"milestone":null,"commits_url":"https://api.github.com/repos/andreasgal/j2me.js/pulls/807/commits","review_comments_url":"https://api.github.com/repos/andreasgal/j2me.js/pulls/807/comments","review_comment_url":"https://api.github.com/repos/andreasgal/j2me.js/pulls/comments/{number}","comments_url":"https://api.github.com/repos/andreasgal/j2me.js/issues/807/comments","statuses_url":"https://api.github.com/repos/andreasgal/j2me.js/statuses/ffb2f7de89c0fb2dfe06e9b05968dcec717159f3","head":{"label":"mykmelez:enable-fc-tck-tests","ref":"enable-fc-tck-tests","sha":"ffb2f7de89c0fb2dfe06e9b05968dcec717159f3","user":{"login":"mykmelez","id":305455,"avatar_url":"https://avatars.githubusercontent.com/u/305455?v=3","gravatar_id":"","url":"https://api.github.com/users/mykmelez","html_url":"https://github.com/mykmelez","followers_url":"https://api.github.com/users/mykmelez/followers","following_url":"https://api.github.com/users/mykmelez/following{/other_user}","gists_url":"https://api.github.com/users/mykmelez/gists{/gist_id}","starred_url":"https://api.github.com/users/mykmelez/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mykmelez/subscriptions","organizations_url":"https://api.github.com/users/mykmelez/orgs","repos_url":"https://api.github.com/users/mykmelez/repos","events_url":"https://api.github.com/users/mykmelez/events{/privacy}","received_events_url":"https://api.github.com/users/mykmelez/received_events","type":"User","site_admin":false},"repo":{"id":22497156,"name":"j2me.js","full_name":"mykmelez/j2me.js","owner":{"login":"mykmelez","id":305455,"avatar_url":"https://avatars.githubusercontent.com/u/305455?v=3","gravatar_id":"","url":"https://api.github.com/users/mykmelez","html_url":"https://github.com/mykmelez","followers_url":"https://api.github.com/users/mykmelez/followers","following_url":"https://api.github.com/users/mykmelez/following{/other_user}","gists_url":"https://api.github.com/users/mykmelez/gists{/gist_id}","starred_url":"https://api.github.com/users/mykmelez/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mykmelez/subscriptions","organizations_url":"https://api.github.com/users/mykmelez/orgs","repos_url":"https://api.github.com/users/mykmelez/repos","events_url":"https://api.github.com/users/mykmelez/events{/privacy}","received_events_url":"https://api.github.com/users/mykmelez/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/mykmelez/j2me.js","description":"J2ME VM in JavaScript","fork":true,"url":"https://api.github.com/repos/mykmelez/j2me.js","forks_url":"https://api.github.com/repos/mykmelez/j2me.js/forks","keys_url":"https://api.github.com/repos/mykmelez/j2me.js/keys{/key_id}","collaborators_url":"https://api.github.com/repos/mykmelez/j2me.js/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/mykmelez/j2me.js/teams","hooks_url":"https://api.github.com/repos/mykmelez/j2me.js/hooks","issue_events_url":"https://api.github.com/repos/mykmelez/j2me.js/issues/events{/number}","events_url":"https://api.github.com/repos/mykmelez/j2me.js/events","assignees_url":"https://api.github.com/repos/mykmelez/j2me.js/assignees{/user}","branches_url":"https://api.github.com/repos/mykmelez/j2me.js/branches{/branch}","tags_url":"https://api.github.com/repos/mykmelez/j2me.js/tags","blobs_url":"https://api.github.com/repos/mykmelez/j2me.js/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/mykmelez/j2me.js/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/mykmelez/j2me.js/git/refs{/sha}","trees_url":"https://api.github.com/repos/mykmelez/j2me.js/git/trees{/sha}","statuses_url":"https://api.github.com/repos/mykmelez/j2me.js/statuses/{sha}","languages_url":"https://api.github.com/repos/mykmelez/j2me.js/languages","stargazers_url":"https://api.github.com/repos/mykmelez/j2me.js/stargazers","contributors_url":"https://api.github.com/repos/mykmelez/j2me.js/contributors","subscribers_url":"https://api.github.com/repos/mykmelez/j2me.js/subscribers","subscription_url":"https://api.github.com/repos/mykmelez/j2me.js/subscription","commits_url":"https://api.github.com/repos/mykmelez/j2me.js/commits{/sha}","git_commits_url":"https://api.github.com/repos/mykmelez/j2me.js/git/commits{/sha}","comments_url":"https://api.github.com/repos/mykmelez/j2me.js/comments{/number}","issue_comment_url":"https://api.github.com/repos/mykmelez/j2me.js/issues/comments/{number}","contents_url":"https://api.github.com/repos/mykmelez/j2me.js/contents/{+path}","compare_url":"https://api.github.com/repos/mykmelez/j2me.js/compare/{base}...{head}","merges_url":"https://api.github.com/repos/mykmelez/j2me.js/merges","archive_url":"https://api.github.com/repos/mykmelez/j2me.js/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/mykmelez/j2me.js/downloads","issues_url":"https://api.github.com/repos/mykmelez/j2me.js/issues{/number}","pulls_url":"https://api.github.com/repos/mykmelez/j2me.js/pulls{/number}","milestones_url":"https://api.github.com/repos/mykmelez/j2me.js/milestones{/number}","notifications_url":"https://api.github.com/repos/mykmelez/j2me.js/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/mykmelez/j2me.js/labels{/name}","releases_url":"https://api.github.com/repos/mykmelez/j2me.js/releases{/id}","created_at":"2014-08-01T06:02:22Z","updated_at":"2014-12-31T17:56:15Z","pushed_at":"2015-01-01T00:12:17Z","git_url":"git://github.com/mykmelez/j2me.js.git","ssh_url":"git@github.com:mykmelez/j2me.js.git","clone_url":"https://github.com/mykmelez/j2me.js.git","svn_url":"https://github.com/mykmelez/j2me.js","homepage":null,"size":13399,"stargazers_count":0,"watchers_count":0,"language":"Java","has_issues":false,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master"}},"base":{"label":"andreasgal:master","ref":"master","sha":"3992498a5ebcaae3287e810bfec889e0a21f3a56","user":{"login":"andreasgal","id":313748,"avatar_url":"https://avatars.githubusercontent.com/u/313748?v=3","gravatar_id":"","url":"https://api.github.com/users/andreasgal","html_url":"https://github.com/andreasgal","followers_url":"https://api.github.com/users/andreasgal/followers","following_url":"https://api.github.com/users/andreasgal/following{/other_user}","gists_url":"https://api.github.com/users/andreasgal/gists{/gist_id}","starred_url":"https://api.github.com/users/andreasgal/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/andreasgal/subscriptions","organizations_url":"https://api.github.com/users/andreasgal/orgs","repos_url":"https://api.github.com/users/andreasgal/repos","events_url":"https://api.github.com/users/andreasgal/events{/privacy}","received_events_url":"https://api.github.com/users/andreasgal/received_events","type":"User","site_admin":false},"repo":{"id":21724513,"name":"j2me.js","full_name":"andreasgal/j2me.js","owner":{"login":"andreasgal","id":313748,"avatar_url":"https://avatars.githubusercontent.com/u/313748?v=3","gravatar_id":"","url":"https://api.github.com/users/andreasgal","html_url":"https://github.com/andreasgal","followers_url":"https://api.github.com/users/andreasgal/followers","following_url":"https://api.github.com/users/andreasgal/following{/other_user}","gists_url":"https://api.github.com/users/andreasgal/gists{/gist_id}","starred_url":"https://api.github.com/users/andreasgal/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/andreasgal/subscriptions","organizations_url":"https://api.github.com/users/andreasgal/orgs","repos_url":"https://api.github.com/users/andreasgal/repos","events_url":"https://api.github.com/users/andreasgal/events{/privacy}","received_events_url":"https://api.github.com/users/andreasgal/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/andreasgal/j2me.js","description":"J2ME VM in JavaScript","fork":false,"url":"https://api.github.com/repos/andreasgal/j2me.js","forks_url":"https://api.github.com/repos/andreasgal/j2me.js/forks","keys_url":"https://api.github.com/repos/andreasgal/j2me.js/keys{/key_id}","collaborators_url":"https://api.github.com/repos/andreasgal/j2me.js/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/andreasgal/j2me.js/teams","hooks_url":"https://api.github.com/repos/andreasgal/j2me.js/hooks","issue_events_url":"https://api.github.com/repos/andreasgal/j2me.js/issues/events{/number}","events_url":"https://api.github.com/repos/andreasgal/j2me.js/events","assignees_url":"https://api.github.com/repos/andreasgal/j2me.js/assignees{/user}","branches_url":"https://api.github.com/repos/andreasgal/j2me.js/branches{/branch}","tags_url":"https://api.github.com/repos/andreasgal/j2me.js/tags","blobs_url":"https://api.github.com/repos/andreasgal/j2me.js/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/andreasgal/j2me.js/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/andreasgal/j2me.js/git/refs{/sha}","trees_url":"https://api.github.com/repos/andreasgal/j2me.js/git/trees{/sha}","statuses_url":"https://api.github.com/repos/andreasgal/j2me.js/statuses/{sha}","languages_url":"https://api.github.com/repos/andreasgal/j2me.js/languages","stargazers_url":"https://api.github.com/repos/andreasgal/j2me.js/stargazers","contributors_url":"https://api.github.com/repos/andreasgal/j2me.js/contributors","subscribers_url":"https://api.github.com/repos/andreasgal/j2me.js/subscribers","subscription_url":"https://api.github.com/repos/andreasgal/j2me.js/subscription","commits_url":"https://api.github.com/repos/andreasgal/j2me.js/commits{/sha}","git_commits_url":"https://api.github.com/repos/andreasgal/j2me.js/git/commits{/sha}","comments_url":"https://api.github.com/repos/andreasgal/j2me.js/comments{/number}","issue_comment_url":"https://api.github.com/repos/andreasgal/j2me.js/issues/comments/{number}","contents_url":"https://api.github.com/repos/andreasgal/j2me.js/contents/{+path}","compare_url":"https://api.github.com/repos/andreasgal/j2me.js/compare/{base}...{head}","merges_url":"https://api.github.com/repos/andreasgal/j2me.js/merges","archive_url":"https://api.github.com/repos/andreasgal/j2me.js/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/andreasgal/j2me.js/downloads","issues_url":"https://api.github.com/repos/andreasgal/j2me.js/issues{/number}","pulls_url":"https://api.github.com/repos/andreasgal/j2me.js/pulls{/number}","milestones_url":"https://api.github.com/repos/andreasgal/j2me.js/milestones{/number}","notifications_url":"https://api.github.com/repos/andreasgal/j2me.js/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/andreasgal/j2me.js/labels{/name}","releases_url":"https://api.github.com/repos/andreasgal/j2me.js/releases{/id}","created_at":"2014-07-11T06:23:27Z","updated_at":"2014-12-31T17:55:30Z","pushed_at":"2015-01-01T15:02:07Z","git_url":"git://github.com/andreasgal/j2me.js.git","ssh_url":"git@github.com:andreasgal/j2me.js.git","clone_url":"https://github.com/andreasgal/j2me.js.git","svn_url":"https://github.com/andreasgal/j2me.js","homepage":null,"size":17670,"stargazers_count":47,"watchers_count":47,"language":"Java","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":14,"mirror_url":null,"open_issues_count":110,"forks":14,"open_issues":110,"watchers":47,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/andreasgal/j2me.js/pulls/807"},"html":{"href":"https://github.com/andreasgal/j2me.js/pull/807"},"issue":{"href":"https://api.github.com/repos/andreasgal/j2me.js/issues/807"},"comments":{"href":"https://api.github.com/repos/andreasgal/j2me.js/issues/807/comments"},"review_comments":{"href":"https://api.github.com/repos/andreasgal/j2me.js/pulls/807/comments"},"review_comment":{"href":"https://api.github.com/repos/andreasgal/j2me.js/pulls/comments/{number}"},"commits":{"href":"https://api.github.com/repos/andreasgal/j2me.js/pulls/807/commits"},"statuses":{"href":"https://api.github.com/repos/andreasgal/j2me.js/statuses/ffb2f7de89c0fb2dfe06e9b05968dcec717159f3"}},"merged":true,"mergeable":null,"mergeable_state":"unknown","merged_by":{"login":"marco-c","id":1616846,"avatar_url":"https://avatars.githubusercontent.com/u/1616846?v=3","gravatar_id":"","url":"https://api.github.com/users/marco-c","html_url":"https://github.com/marco-c","followers_url":"https://api.github.com/users/marco-c/followers","following_url":"https://api.github.com/users/marco-c/following{/other_user}","gists_url":"https://api.github.com/users/marco-c/gists{/gist_id}","starred_url":"https://api.github.com/users/marco-c/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/marco-c/subscriptions","organizations_url":"https://api.github.com/users/marco-c/orgs","repos_url":"https://api.github.com/users/marco-c/repos","events_url":"https://api.github.com/users/marco-c/events{/privacy}","received_events_url":"https://api.github.com/users/marco-c/received_events","type":"User","site_admin":false},"comments":2,"review_comments":0,"commits":2,"additions":71,"deletions":69,"changed_files":8}},"public":true,"created_at":"2015-01-01T15:02:07Z"}
,{"id":"2489652038","type":"PushEvent","actor":{"id":163093,"login":"anlutro","gravatar_id":"","url":"https://api.github.com/users/anlutro","avatar_url":"https://avatars.githubusercontent.com/u/163093?"},"repo":{"id":18376778,"name":"autarky/framework","url":"https://api.github.com/repos/autarky/framework"},"payload":{"push_id":536864422,"size":1,"distinct_size":1,"ref":"refs/heads/develop","head":"f72cbf91a5ae0119fd43c7d0e6e9fb041bc12bcf","before":"7543ea3a9e0c5711cc92c8a1883ab4c7954805a2","commits":[{"sha":"f72cbf91a5ae0119fd43c7d0e6e9fb041bc12bcf","author":{"email":"f8d193463ee93f1fef7df38733cc62b4129558f4@gmail.com","name":"Andreas Lutro"},"message":"tweak and clean up reflection factory code","distinct":true,"url":"https://api.github.com/repos/autarky/framework/commits/f72cbf91a5ae0119fd43c7d0e6e9fb041bc12bcf"}]},"public":true,"created_at":"2015-01-01T15:02:07Z","org":{"id":7142032,"login":"autarky","gravatar_id":"","url":"https://api.github.com/orgs/autarky","avatar_url":"https://avatars.githubusercontent.com/u/7142032?"}}
,{"id":"2489652039","type":"PushEvent","actor":{"id":4419146,"login":"hex7c0","gravatar_id":"","url":"https://api.github.com/users/hex7c0","avatar_url":"https://avatars.githubusercontent.com/u/4419146?"},"repo":{"id":22572270,"name":"hex7c0/logger-request-cli","url":"https://api.github.com/repos/hex7c0/logger-request-cli"},"payload":{"push_id":536864423,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"bc76863b2eb9f2562a8c0cfcdaea2065c6adf294","before":"18d6ae35c8eba2b6f04e00fe5ed40cd5ef62c3b7","commits":[{"sha":"d0131faab6e81b1ca111b53d28ad776f964fbb7d","author":{"email":"de7d41e33d0bb4bff781eaaec15a77fd8e342187@gmail.com","name":"hex7c0"},"message":"travis docker","distinct":true,"url":"https://api.github.com/repos/hex7c0/logger-request-cli/commits/d0131faab6e81b1ca111b53d28ad776f964fbb7d"},{"sha":"bc76863b2eb9f2562a8c0cfcdaea2065c6adf294","author":{"email":"de7d41e33d0bb4bff781eaaec15a77fd8e342187@gmail.com","name":"hex7c0"},"message":"update devDependencies","distinct":true,"url":"https://api.github.com/repos/hex7c0/logger-request-cli/commits/bc76863b2eb9f2562a8c0cfcdaea2065c6adf294"}]},"public":true,"created_at":"2015-01-01T15:02:07Z"}
,{"id":"2489652043","type":"PushEvent","actor":{"id":3641677,"login":"SaifJerbi","gravatar_id":"","url":"https://api.github.com/users/SaifJerbi","avatar_url":"https://avatars.githubusercontent.com/u/3641677?"},"repo":{"id":26950022,"name":"Vaadin-Tunis-Meetup-Group/Vaadin-Meetup-App","url":"https://api.github.com/repos/Vaadin-Tunis-Meetup-Group/Vaadin-Meetup-App"},"payload":{"push_id":536864424,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"ebf9a15cdad4adb102a4e8e482b002116fef0341","before":"36fa6d6599ebcc58f0f0f1ce320031ebe0f48fc6","commits":[{"sha":"4ae988739dc48f3c9f5e6bef4f2a4819107e69bb","author":{"email":"86c861d76d99d7d818f3d1247f06babe4efeea36@gmail.com","name":"SaifJerbi"},"message":"Fix sonar violations\nremove unused type\n\nSigned-off-by: SaifJerbi <m.jerbi.saif@gmail.com>","distinct":true,"url":"https://api.github.com/repos/Vaadin-Tunis-Meetup-Group/Vaadin-Meetup-App/commits/4ae988739dc48f3c9f5e6bef4f2a4819107e69bb"},{"sha":"ebf9a15cdad4adb102a4e8e482b002116fef0341","author":{"email":"86c861d76d99d7d818f3d1247f06babe4efeea36@gmail.com","name":"SaifJerbi"},"message":"adding prototype files","distinct":true,"url":"https://api.github.com/repos/Vaadin-Tunis-Meetup-Group/Vaadin-Meetup-App/commits/ebf9a15cdad4adb102a4e8e482b002116fef0341"}]},"public":true,"created_at":"2015-01-01T15:02:07Z","org":{"id":8834968,"login":"Vaadin-Tunis-Meetup-Group","gravatar_id":"","url":"https://api.github.com/orgs/Vaadin-Tunis-Meetup-Group","avatar_url":"https://avatars.githubusercontent.com/u/8834968?"}}
,{"id":"2489652046","type":"PushEvent","actor":{"id":1616846,"login":"marco-c","gravatar_id":"","url":"https://api.github.com/users/marco-c","avatar_url":"https://avatars.githubusercontent.com/u/1616846?"},"repo":{"id":21724513,"name":"andreasgal/j2me.js","url":"https://api.github.com/repos/andreasgal/j2me.js"},"payload":{"push_id":536864426,"size":3,"distinct_size":3,"ref":"refs/heads/master","head":"26dc481162c00104934620d8daa7490158af2fb8","before":"3992498a5ebcaae3287e810bfec889e0a21f3a56","commits":[{"sha":"fc5a53a8f057082220755554629a63f24c0859a1","author":{"email":"06a661d8656af919ab1a27e1bef78119ec5c6f9f@mozilla.org","name":"Myk Melez"},"message":"enable FileConnection TCK tests in automation","distinct":true,"url":"https://api.github.com/repos/andreasgal/j2me.js/commits/fc5a53a8f057082220755554629a63f24c0859a1"},{"sha":"ffb2f7de89c0fb2dfe06e9b05968dcec717159f3","author":{"email":"06a661d8656af919ab1a27e1bef78119ec5c6f9f@mozilla.org","name":"Myk Melez"},"message":"refactor fs.js tests to use fs test harness, not run redundantly","distinct":true,"url":"https://api.github.com/repos/andreasgal/j2me.js/commits/ffb2f7de89c0fb2dfe06e9b05968dcec717159f3"},{"sha":"26dc481162c00104934620d8daa7490158af2fb8","author":{"email":"8e8803dd70e002f901c0b96b30e84a790baae37f@studenti.unina.it","name":"Marco"},"message":"Merge pull request #807 from mykmelez/enable-fc-tck-tests\n\nenable FileConnection TCK tests in automation","distinct":true,"url":"https://api.github.com/repos/andreasgal/j2me.js/commits/26dc481162c00104934620d8daa7490158af2fb8"}]},"public":true,"created_at":"2015-01-01T15:02:07Z"}
,{"id":"2489652048","type":"IssueCommentEvent","actor":{"id":206724,"login":"guspower","gravatar_id":"","url":"https://api.github.com/users/guspower","avatar_url":"https://avatars.githubusercontent.com/u/206724?"},"repo":{"id":9346373,"name":"aestasit/sshoogr","url":"https://api.github.com/repos/aestasit/sshoogr"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/aestasit/sshoogr/issues/8","labels_url":"https://api.github.com/repos/aestasit/sshoogr/issues/8/labels{/name}","comments_url":"https://api.github.com/repos/aestasit/sshoogr/issues/8/comments","events_url":"https://api.github.com/repos/aestasit/sshoogr/issues/8/events","html_url":"https://github.com/aestasit/sshoogr/issues/8","id":26237097,"number":8,"title":"Allow JSCH debug logging","user":{"login":"aadamovich","id":2787794,"avatar_url":"https://avatars.githubusercontent.com/u/2787794?v=3","gravatar_id":"","url":"https://api.github.com/users/aadamovich","html_url":"https://github.com/aadamovich","followers_url":"https://api.github.com/users/aadamovich/followers","following_url":"https://api.github.com/users/aadamovich/following{/other_user}","gists_url":"https://api.github.com/users/aadamovich/gists{/gist_id}","starred_url":"https://api.github.com/users/aadamovich/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/aadamovich/subscriptions","organizations_url":"https://api.github.com/users/aadamovich/orgs","repos_url":"https://api.github.com/users/aadamovich/repos","events_url":"https://api.github.com/users/aadamovich/events{/privacy}","received_events_url":"https://api.github.com/users/aadamovich/received_events","type":"User","site_admin":false},"labels":[{"url":"https://api.github.com/repos/aestasit/sshoogr/labels/enhancement","name":"enhancement","color":"84b6eb"}],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2014-01-24T12:17:00Z","updated_at":"2015-01-01T15:02:08Z","closed_at":null,"body":"Add ability to enable JSCH debug logging to debug SSH related problems"},"comment":{"url":"https://api.github.com/repos/aestasit/sshoogr/issues/comments/68488531","html_url":"https://github.com/aestasit/sshoogr/issues/8#issuecomment-68488531","issue_url":"https://api.github.com/repos/aestasit/sshoogr/issues/8","id":68488531,"user":{"login":"guspower","id":206724,"avatar_url":"https://avatars.githubusercontent.com/u/206724?v=3","gravatar_id":"","url":"https://api.github.com/users/guspower","html_url":"https://github.com/guspower","followers_url":"https://api.github.com/users/guspower/followers","following_url":"https://api.github.com/users/guspower/following{/other_user}","gists_url":"https://api.github.com/users/guspower/gists{/gist_id}","starred_url":"https://api.github.com/users/guspower/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/guspower/subscriptions","organizations_url":"https://api.github.com/users/guspower/orgs","repos_url":"https://api.github.com/users/guspower/repos","events_url":"https://api.github.com/users/guspower/events{/privacy}","received_events_url":"https://api.github.com/users/guspower/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:02:08Z","updated_at":"2015-01-01T15:02:08Z","body":"+1 I'm currently seeing an algorithm fail as per http://stackoverflow.com/questions/6263630/jschexception-algorithm-negotiation-fail so the ability to enable debug logging on the underlying JSCH library would be really helpful."}},"public":true,"created_at":"2015-01-01T15:02:08Z","org":{"id":718467,"login":"aestasit","gravatar_id":"","url":"https://api.github.com/orgs/aestasit","avatar_url":"https://avatars.githubusercontent.com/u/718467?"}}
,{"id":"2489652049","type":"IssueCommentEvent","actor":{"id":256041,"login":"nikosdion","gravatar_id":"","url":"https://api.github.com/users/nikosdion","avatar_url":"https://avatars.githubusercontent.com/u/256041?"},"repo":{"id":14451140,"name":"akeeba/akeebasubs","url":"https://api.github.com/repos/akeeba/akeebasubs"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/akeeba/akeebasubs/issues/82","labels_url":"https://api.github.com/repos/akeeba/akeebasubs/issues/82/labels{/name}","comments_url":"https://api.github.com/repos/akeeba/akeebasubs/issues/82/comments","events_url":"https://api.github.com/repos/akeeba/akeebasubs/issues/82/events","html_url":"https://github.com/akeeba/akeebasubs/issues/82","id":53112112,"number":82,"title":"Reports -> expiration by week?","user":{"login":"compojoom","id":693770,"avatar_url":"https://avatars.githubusercontent.com/u/693770?v=3","gravatar_id":"","url":"https://api.github.com/users/compojoom","html_url":"https://github.com/compojoom","followers_url":"https://api.github.com/users/compojoom/followers","following_url":"https://api.github.com/users/compojoom/following{/other_user}","gists_url":"https://api.github.com/users/compojoom/gists{/gist_id}","starred_url":"https://api.github.com/users/compojoom/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/compojoom/subscriptions","organizations_url":"https://api.github.com/users/compojoom/orgs","repos_url":"https://api.github.com/users/compojoom/repos","events_url":"https://api.github.com/users/compojoom/events{/privacy}","received_events_url":"https://api.github.com/users/compojoom/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"milestone":null,"comments":5,"created_at":"2014-12-30T12:18:48Z","updated_at":"2015-01-01T15:02:08Z","closed_at":"2014-12-31T13:34:14Z","body":"Is this report working for any of you? It has always generated a js error in the jplot script. I decided to replace it with the non-minified version to see what's going on, but I'm not any cleverer now:\r\nTypeError: this._plotData[j][k] is undefined\r\nvar prevval = this._plotData[j][k][sidx];\r\n\r\nI see that the ajax request for the data is generating a correct json, so not sure what's going on here?\r\n\t"},"comment":{"url":"https://api.github.com/repos/akeeba/akeebasubs/issues/comments/68488532","html_url":"https://github.com/akeeba/akeebasubs/issues/82#issuecomment-68488532","issue_url":"https://api.github.com/repos/akeeba/akeebasubs/issues/82","id":68488532,"user":{"login":"nikosdion","id":256041,"avatar_url":"https://avatars.githubusercontent.com/u/256041?v=3","gravatar_id":"","url":"https://api.github.com/users/nikosdion","html_url":"https://github.com/nikosdion","followers_url":"https://api.github.com/users/nikosdion/followers","following_url":"https://api.github.com/users/nikosdion/following{/other_user}","gists_url":"https://api.github.com/users/nikosdion/gists{/gist_id}","starred_url":"https://api.github.com/users/nikosdion/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/nikosdion/subscriptions","organizations_url":"https://api.github.com/users/nikosdion/orgs","repos_url":"https://api.github.com/users/nikosdion/repos","events_url":"https://api.github.com/users/nikosdion/events{/privacy}","received_events_url":"https://api.github.com/users/nikosdion/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:02:08Z","updated_at":"2015-01-01T15:02:08Z","body":"I could not find a different cause. If you are luckier debugging this feel free to submit a PR. FYI it works fine on local host.\r\n\r\nNicholas K. Dionysopoulos\r\nLead developer and owner, Akeeba Ltd. \r\n\r\nSent from my iPhone. Please excuse my brevity. \r\n\r\n1 Ιαν 2015, 16:15, ο/η Daniel Dimitrov <notifications@github.com> έγραψε:\r\n\r\n> Nick, are you sure that this is really the problem? Event with the changed from the latest commit - it doesn't work for me. I still get the same error:\r\n> \r\n> —\r\n> Reply to this email directly or view it on GitHub.\r\n> "}},"public":true,"created_at":"2015-01-01T15:02:08Z","org":{"id":4135934,"login":"akeeba","gravatar_id":"","url":"https://api.github.com/orgs/akeeba","avatar_url":"https://avatars.githubusercontent.com/u/4135934?"}}
,{"id":"2489652051","type":"ForkEvent","actor":{"id":2238502,"login":"weiguo21","gravatar_id":"","url":"https://api.github.com/users/weiguo21","avatar_url":"https://avatars.githubusercontent.com/u/2238502?"},"repo":{"id":22127255,"name":"sunhang/fileserver","url":"https://api.github.com/repos/sunhang/fileserver"},"payload":{"forkee":{"id":28688632,"name":"fileserver","full_name":"weiguo21/fileserver","owner":{"login":"weiguo21","id":2238502,"avatar_url":"https://avatars.githubusercontent.com/u/2238502?v=3","gravatar_id":"","url":"https://api.github.com/users/weiguo21","html_url":"https://github.com/weiguo21","followers_url":"https://api.github.com/users/weiguo21/followers","following_url":"https://api.github.com/users/weiguo21/following{/other_user}","gists_url":"https://api.github.com/users/weiguo21/gists{/gist_id}","starred_url":"https://api.github.com/users/weiguo21/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/weiguo21/subscriptions","organizations_url":"https://api.github.com/users/weiguo21/orgs","repos_url":"https://api.github.com/users/weiguo21/repos","events_url":"https://api.github.com/users/weiguo21/events{/privacy}","received_events_url":"https://api.github.com/users/weiguo21/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/weiguo21/fileserver","description":"上传图片的服务器代码","fork":true,"url":"https://api.github.com/repos/weiguo21/fileserver","forks_url":"https://api.github.com/repos/weiguo21/fileserver/forks","keys_url":"https://api.github.com/repos/weiguo21/fileserver/keys{/key_id}","collaborators_url":"https://api.github.com/repos/weiguo21/fileserver/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/weiguo21/fileserver/teams","hooks_url":"https://api.github.com/repos/weiguo21/fileserver/hooks","issue_events_url":"https://api.github.com/repos/weiguo21/fileserver/issues/events{/number}","events_url":"https://api.github.com/repos/weiguo21/fileserver/events","assignees_url":"https://api.github.com/repos/weiguo21/fileserver/assignees{/user}","branches_url":"https://api.github.com/repos/weiguo21/fileserver/branches{/branch}","tags_url":"https://api.github.com/repos/weiguo21/fileserver/tags","blobs_url":"https://api.github.com/repos/weiguo21/fileserver/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/weiguo21/fileserver/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/weiguo21/fileserver/git/refs{/sha}","trees_url":"https://api.github.com/repos/weiguo21/fileserver/git/trees{/sha}","statuses_url":"https://api.github.com/repos/weiguo21/fileserver/statuses/{sha}","languages_url":"https://api.github.com/repos/weiguo21/fileserver/languages","stargazers_url":"https://api.github.com/repos/weiguo21/fileserver/stargazers","contributors_url":"https://api.github.com/repos/weiguo21/fileserver/contributors","subscribers_url":"https://api.github.com/repos/weiguo21/fileserver/subscribers","subscription_url":"https://api.github.com/repos/weiguo21/fileserver/subscription","commits_url":"https://api.github.com/repos/weiguo21/fileserver/commits{/sha}","git_commits_url":"https://api.github.com/repos/weiguo21/fileserver/git/commits{/sha}","comments_url":"https://api.github.com/repos/weiguo21/fileserver/comments{/number}","issue_comment_url":"https://api.github.com/repos/weiguo21/fileserver/issues/comments/{number}","contents_url":"https://api.github.com/repos/weiguo21/fileserver/contents/{+path}","compare_url":"https://api.github.com/repos/weiguo21/fileserver/compare/{base}...{head}","merges_url":"https://api.github.com/repos/weiguo21/fileserver/merges","archive_url":"https://api.github.com/repos/weiguo21/fileserver/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/weiguo21/fileserver/downloads","issues_url":"https://api.github.com/repos/weiguo21/fileserver/issues{/number}","pulls_url":"https://api.github.com/repos/weiguo21/fileserver/pulls{/number}","milestones_url":"https://api.github.com/repos/weiguo21/fileserver/milestones{/number}","notifications_url":"https://api.github.com/repos/weiguo21/fileserver/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/weiguo21/fileserver/labels{/name}","releases_url":"https://api.github.com/repos/weiguo21/fileserver/releases{/id}","created_at":"2015-01-01T15:02:08Z","updated_at":"2014-07-23T01:25:42Z","pushed_at":"2014-07-23T01:25:42Z","git_url":"git://github.com/weiguo21/fileserver.git","ssh_url":"git@github.com:weiguo21/fileserver.git","clone_url":"https://github.com/weiguo21/fileserver.git","svn_url":"https://github.com/weiguo21/fileserver","homepage":null,"size":804,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":false,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master","public":true}},"public":true,"created_at":"2015-01-01T15:02:08Z"}
,{"id":"2489652052","type":"IssueCommentEvent","actor":{"id":10351177,"login":"flyingsheep1433","gravatar_id":"","url":"https://api.github.com/users/flyingsheep1433","avatar_url":"https://avatars.githubusercontent.com/u/10351177?"},"repo":{"id":16182383,"name":"Wynncraft/Issues","url":"https://api.github.com/repos/Wynncraft/Issues"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/Wynncraft/Issues/issues/1432","labels_url":"https://api.github.com/repos/Wynncraft/Issues/issues/1432/labels{/name}","comments_url":"https://api.github.com/repos/Wynncraft/Issues/issues/1432/comments","events_url":"https://api.github.com/repos/Wynncraft/Issues/issues/1432/events","html_url":"https://github.com/Wynncraft/Issues/issues/1432","id":53220740,"number":1432,"title":"WynnCraft Forums VIP","user":{"login":"TheCelo","id":10364562,"avatar_url":"https://avatars.githubusercontent.com/u/10364562?v=3","gravatar_id":"","url":"https://api.github.com/users/TheCelo","html_url":"https://github.com/TheCelo","followers_url":"https://api.github.com/users/TheCelo/followers","following_url":"https://api.github.com/users/TheCelo/following{/other_user}","gists_url":"https://api.github.com/users/TheCelo/gists{/gist_id}","starred_url":"https://api.github.com/users/TheCelo/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/TheCelo/subscriptions","organizations_url":"https://api.github.com/users/TheCelo/orgs","repos_url":"https://api.github.com/users/TheCelo/repos","events_url":"https://api.github.com/users/TheCelo/events{/privacy}","received_events_url":"https://api.github.com/users/TheCelo/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":1,"created_at":"2015-01-01T14:28:42Z","updated_at":"2015-01-01T15:02:08Z","closed_at":null,"body":"Hello, i just bought VIP some days ago, when i do /forum TheCelo(My Username) It says \"We can't autrhorize this account, Try Again Later\" i did it again some days later and it still doesn't Work, says the same thing ..."},"comment":{"url":"https://api.github.com/repos/Wynncraft/Issues/issues/comments/68488533","html_url":"https://github.com/Wynncraft/Issues/issues/1432#issuecomment-68488533","issue_url":"https://api.github.com/repos/Wynncraft/Issues/issues/1432","id":68488533,"user":{"login":"flyingsheep1433","id":10351177,"avatar_url":"https://avatars.githubusercontent.com/u/10351177?v=3","gravatar_id":"","url":"https://api.github.com/users/flyingsheep1433","html_url":"https://github.com/flyingsheep1433","followers_url":"https://api.github.com/users/flyingsheep1433/followers","following_url":"https://api.github.com/users/flyingsheep1433/following{/other_user}","gists_url":"https://api.github.com/users/flyingsheep1433/gists{/gist_id}","starred_url":"https://api.github.com/users/flyingsheep1433/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/flyingsheep1433/subscriptions","organizations_url":"https://api.github.com/users/flyingsheep1433/orgs","repos_url":"https://api.github.com/users/flyingsheep1433/repos","events_url":"https://api.github.com/users/flyingsheep1433/events{/privacy}","received_events_url":"https://api.github.com/users/flyingsheep1433/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:02:08Z","updated_at":"2015-01-01T15:02:08Z","body":"The same thing for me... I have no idea what to do.\r\n\r\nSent from my iPod\r\n\r\n> On Jan 1, 2015, at 9:28 AM, TheCelo <notifications@github.com> wrote:\r\n> \r\n> Hello, i just bought VIP some days ago, when i do /forum TheCelo(My Username) It says \"We can't autrhorize this account, Try Again Later\" i did it again some days later and it still doesn't Work, says the same thing ...\r\n> \r\n> —\r\n> Reply to this email directly or view it on GitHub.\r\n> \r\n"}},"public":true,"created_at":"2015-01-01T15:02:08Z","org":{"id":5337644,"login":"Wynncraft","gravatar_id":"","url":"https://api.github.com/orgs/Wynncraft","avatar_url":"https://avatars.githubusercontent.com/u/5337644?"}}
,{"id":"2489652053","type":"PushEvent","actor":{"id":1395245,"login":"ogarbe","gravatar_id":"","url":"https://api.github.com/users/ogarbe","avatar_url":"https://avatars.githubusercontent.com/u/1395245?"},"repo":{"id":28688179,"name":"vpg/titon.cache","url":"https://api.github.com/repos/vpg/titon.cache"},"payload":{"push_id":536864428,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"e3d6c4cc5e0a32c6bdd7b0dae6d2bd06647a8b7c","before":"eb81b20bde4f61386324541ada5ebf264ede030e","commits":[{"sha":"e3d6c4cc5e0a32c6bdd7b0dae6d2bd06647a8b7c","author":{"email":"dfe68425c2abed43f6ab793333cc1723b2cd41f8@voyageprive.com","name":"Olivier Garbé"},"message":"Fix composer","distinct":true,"url":"https://api.github.com/repos/vpg/titon.cache/commits/e3d6c4cc5e0a32c6bdd7b0dae6d2bd06647a8b7c"}]},"public":true,"created_at":"2015-01-01T15:02:08Z","org":{"id":1394283,"login":"vpg","gravatar_id":"","url":"https://api.github.com/orgs/vpg","avatar_url":"https://avatars.githubusercontent.com/u/1394283?"}}
,{"id":"2489652054","type":"PushEvent","actor":{"id":7809746,"login":"LaChal","gravatar_id":"","url":"https://api.github.com/users/LaChal","avatar_url":"https://avatars.githubusercontent.com/u/7809746?"},"repo":{"id":24035169,"name":"Khroki/MCEdit-Unified","url":"https://api.github.com/repos/Khroki/MCEdit-Unified"},"payload":{"push_id":536864429,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"7c2d93789591edf324eace3479039a6a76c75d62","before":"5851d9cfbc140bae3105ca525c933b7c0627aada","commits":[{"sha":"7c2d93789591edf324eace3479039a6a76c75d62","author":{"email":"68c71e1b4dc241497b5072b05404c20972777990@laposte.net","name":"LaChal"},"message":"Custom brushes translation support.","distinct":true,"url":"https://api.github.com/repos/Khroki/MCEdit-Unified/commits/7c2d93789591edf324eace3479039a6a76c75d62"}]},"public":true,"created_at":"2015-01-01T15:02:08Z"}
,{"id":"2489652056","type":"WatchEvent","actor":{"id":22917,"login":"lantins","gravatar_id":"","url":"https://api.github.com/users/lantins","avatar_url":"https://avatars.githubusercontent.com/u/22917?"},"repo":{"id":27446531,"name":"alexedwards/stack","url":"https://api.github.com/repos/alexedwards/stack"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:02:09Z"}
,{"id":"2489652060","type":"PushEvent","actor":{"id":9416016,"login":"5aurabhK","gravatar_id":"","url":"https://api.github.com/users/5aurabhK","avatar_url":"https://avatars.githubusercontent.com/u/9416016?"},"repo":{"id":28529102,"name":"5aurabhK/keepingfit","url":"https://api.github.com/repos/5aurabhK/keepingfit"},"payload":{"push_id":536864432,"size":1,"distinct_size":1,"ref":"refs/heads/gh-pages","head":"900f3f2e22cb0da1db22bc10a697b265b6c5427b","before":"502c44af911edbe207fa531d30f743332ef6409f","commits":[{"sha":"900f3f2e22cb0da1db22bc10a697b265b6c5427b","author":{"email":"f95eec723805367c948bb244273f7ff20cfc9c50@gmail.com","name":"5aurabhK"},"message":"modi","distinct":true,"url":"https://api.github.com/repos/5aurabhK/keepingfit/commits/900f3f2e22cb0da1db22bc10a697b265b6c5427b"}]},"public":true,"created_at":"2015-01-01T15:02:09Z"}
,{"id":"2489652064","type":"PushEvent","actor":{"id":1866543,"login":"idok","gravatar_id":"","url":"https://api.github.com/users/idok","avatar_url":"https://avatars.githubusercontent.com/u/1866543?"},"repo":{"id":28684581,"name":"wix/hello-react-templates","url":"https://api.github.com/repos/wix/hello-react-templates"},"payload":{"push_id":536864434,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"f6f0bf9d7c879563e523e7e8824a7b8f25a07515","before":"bffd300d9746d247402208add988443ee44dfd44","commits":[{"sha":"910ca6e02013f20640bf9ad9b719ae07fcdf95bd","author":{"email":"e64918f1cbd60416febfa2aa253965ba87b1896f@wix.com","name":"ido"},"message":"link to react-templates","distinct":true,"url":"https://api.github.com/repos/wix/hello-react-templates/commits/910ca6e02013f20640bf9ad9b719ae07fcdf95bd"},{"sha":"f6f0bf9d7c879563e523e7e8824a7b8f25a07515","author":{"email":"e64918f1cbd60416febfa2aa253965ba87b1896f@wix.com","name":"ido"},"message":"Merge remote-tracking branch 'origin/master'","distinct":true,"url":"https://api.github.com/repos/wix/hello-react-templates/commits/f6f0bf9d7c879563e523e7e8824a7b8f25a07515"}]},"public":true,"created_at":"2015-01-01T15:02:11Z","org":{"id":686511,"login":"wix","gravatar_id":"","url":"https://api.github.com/orgs/wix","avatar_url":"https://avatars.githubusercontent.com/u/686511?"}}
,{"id":"2489652065","type":"ForkEvent","actor":{"id":5938334,"login":"bluebird88","gravatar_id":"","url":"https://api.github.com/users/bluebird88","avatar_url":"https://avatars.githubusercontent.com/u/5938334?"},"repo":{"id":28428729,"name":"wasabeef/awesome-android-ui","url":"https://api.github.com/repos/wasabeef/awesome-android-ui"},"payload":{"forkee":{"id":28688633,"name":"awesome-android-ui","full_name":"bluebird88/awesome-android-ui","owner":{"login":"bluebird88","id":5938334,"avatar_url":"https://avatars.githubusercontent.com/u/5938334?v=3","gravatar_id":"","url":"https://api.github.com/users/bluebird88","html_url":"https://github.com/bluebird88","followers_url":"https://api.github.com/users/bluebird88/followers","following_url":"https://api.github.com/users/bluebird88/following{/other_user}","gists_url":"https://api.github.com/users/bluebird88/gists{/gist_id}","starred_url":"https://api.github.com/users/bluebird88/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bluebird88/subscriptions","organizations_url":"https://api.github.com/users/bluebird88/orgs","repos_url":"https://api.github.com/users/bluebird88/repos","events_url":"https://api.github.com/users/bluebird88/events{/privacy}","received_events_url":"https://api.github.com/users/bluebird88/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/bluebird88/awesome-android-ui","description":"A curated list of awesome Android UI/UX libraries","fork":true,"url":"https://api.github.com/repos/bluebird88/awesome-android-ui","forks_url":"https://api.github.com/repos/bluebird88/awesome-android-ui/forks","keys_url":"https://api.github.com/repos/bluebird88/awesome-android-ui/keys{/key_id}","collaborators_url":"https://api.github.com/repos/bluebird88/awesome-android-ui/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/bluebird88/awesome-android-ui/teams","hooks_url":"https://api.github.com/repos/bluebird88/awesome-android-ui/hooks","issue_events_url":"https://api.github.com/repos/bluebird88/awesome-android-ui/issues/events{/number}","events_url":"https://api.github.com/repos/bluebird88/awesome-android-ui/events","assignees_url":"https://api.github.com/repos/bluebird88/awesome-android-ui/assignees{/user}","branches_url":"https://api.github.com/repos/bluebird88/awesome-android-ui/branches{/branch}","tags_url":"https://api.github.com/repos/bluebird88/awesome-android-ui/tags","blobs_url":"https://api.github.com/repos/bluebird88/awesome-android-ui/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/bluebird88/awesome-android-ui/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/bluebird88/awesome-android-ui/git/refs{/sha}","trees_url":"https://api.github.com/repos/bluebird88/awesome-android-ui/git/trees{/sha}","statuses_url":"https://api.github.com/repos/bluebird88/awesome-android-ui/statuses/{sha}","languages_url":"https://api.github.com/repos/bluebird88/awesome-android-ui/languages","stargazers_url":"https://api.github.com/repos/bluebird88/awesome-android-ui/stargazers","contributors_url":"https://api.github.com/repos/bluebird88/awesome-android-ui/contributors","subscribers_url":"https://api.github.com/repos/bluebird88/awesome-android-ui/subscribers","subscription_url":"https://api.github.com/repos/bluebird88/awesome-android-ui/subscription","commits_url":"https://api.github.com/repos/bluebird88/awesome-android-ui/commits{/sha}","git_commits_url":"https://api.github.com/repos/bluebird88/awesome-android-ui/git/commits{/sha}","comments_url":"https://api.github.com/repos/bluebird88/awesome-android-ui/comments{/number}","issue_comment_url":"https://api.github.com/repos/bluebird88/awesome-android-ui/issues/comments/{number}","contents_url":"https://api.github.com/repos/bluebird88/awesome-android-ui/contents/{+path}","compare_url":"https://api.github.com/repos/bluebird88/awesome-android-ui/compare/{base}...{head}","merges_url":"https://api.github.com/repos/bluebird88/awesome-android-ui/merges","archive_url":"https://api.github.com/repos/bluebird88/awesome-android-ui/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/bluebird88/awesome-android-ui/downloads","issues_url":"https://api.github.com/repos/bluebird88/awesome-android-ui/issues{/number}","pulls_url":"https://api.github.com/repos/bluebird88/awesome-android-ui/pulls{/number}","milestones_url":"https://api.github.com/repos/bluebird88/awesome-android-ui/milestones{/number}","notifications_url":"https://api.github.com/repos/bluebird88/awesome-android-ui/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/bluebird88/awesome-android-ui/labels{/name}","releases_url":"https://api.github.com/repos/bluebird88/awesome-android-ui/releases{/id}","created_at":"2015-01-01T15:02:09Z","updated_at":"2015-01-01T14:52:36Z","pushed_at":"2015-01-01T13:23:20Z","git_url":"git://github.com/bluebird88/awesome-android-ui.git","ssh_url":"git@github.com:bluebird88/awesome-android-ui.git","clone_url":"https://github.com/bluebird88/awesome-android-ui.git","svn_url":"https://github.com/bluebird88/awesome-android-ui","homepage":"https://twitter.com/wasabeef_jp","size":201396,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":false,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master","public":true}},"public":true,"created_at":"2015-01-01T15:02:11Z"}
,{"id":"2489652070","type":"WatchEvent","actor":{"id":5316595,"login":"jeremykohn","gravatar_id":"","url":"https://api.github.com/users/jeremykohn","avatar_url":"https://avatars.githubusercontent.com/u/5316595?"},"repo":{"id":1604947,"name":"sharat87/keyboard-fu","url":"https://api.github.com/repos/sharat87/keyboard-fu"},"payload":{"action":"started"},"public":true,"created_at":"2015-01-01T15:02:11Z"}
,{"id":"2489652071","type":"PushEvent","actor":{"id":3321281,"login":"mmattel","gravatar_id":"","url":"https://api.github.com/users/mmattel","avatar_url":"https://avatars.githubusercontent.com/u/3321281?"},"repo":{"id":27933146,"name":"mmattel/documentation","url":"https://api.github.com/repos/mmattel/documentation"},"payload":{"push_id":536864436,"size":1,"distinct_size":1,"ref":"refs/heads/add_double_backticks_to_$user","head":"dc43d4fe85828394858fc435823d7ed4daae3325","before":"926a54b15865cbe3af524d4f50abde92c214d638","commits":[{"sha":"dc43d4fe85828394858fc435823d7ed4daae3325","author":{"email":"3fb208d44b5ebee7f271b9730dfaf416595f9add@diemattels.at","name":"Martin"},"message":"add double backticks to $user in config/smb to have the same look as in stable7","distinct":true,"url":"https://api.github.com/repos/mmattel/documentation/commits/dc43d4fe85828394858fc435823d7ed4daae3325"}]},"public":true,"created_at":"2015-01-01T15:02:11Z"}
,{"id":"2489652072","type":"PushEvent","actor":{"id":3627529,"login":"otrsbot","gravatar_id":"","url":"https://api.github.com/users/otrsbot","avatar_url":"https://avatars.githubusercontent.com/u/3627529?"},"repo":{"id":16276216,"name":"OTRS/otrs","url":"https://api.github.com/repos/OTRS/otrs"},"payload":{"push_id":536864437,"size":1,"distinct_size":1,"ref":"refs/heads/rel-4_0","head":"e505154f2bfb3be8b817d8a02e36d7cd1aaf3420","before":"9524a902a09d36b6232891d21bfd0fb054cb1354","commits":[{"sha":"e505154f2bfb3be8b817d8a02e36d7cd1aaf3420","author":{"email":"2497d761a8fe182513acbb1aafe37a7278b43d72@otrs.com","name":"Manuel Hecht"},"message":"Updated copyright date.","distinct":true,"url":"https://api.github.com/repos/OTRS/otrs/commits/e505154f2bfb3be8b817d8a02e36d7cd1aaf3420"}]},"public":true,"created_at":"2015-01-01T15:02:12Z","org":{"id":3065906,"login":"OTRS","gravatar_id":"","url":"https://api.github.com/orgs/OTRS","avatar_url":"https://avatars.githubusercontent.com/u/3065906?"}}
,{"id":"2489652074","type":"PushEvent","actor":{"id":4762842,"login":"IanDarwin","gravatar_id":"","url":"https://api.github.com/users/IanDarwin","avatar_url":"https://avatars.githubusercontent.com/u/4762842?"},"repo":{"id":13549187,"name":"IanDarwin/darwinsys-api","url":"https://api.github.com/repos/IanDarwin/darwinsys-api"},"payload":{"push_id":536864439,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"391514dbc106d239d1babda884cdd4aef8921cbe","before":"7edc362fb86a0f859d40b926aa674038f4c9d00c","commits":[{"sha":"391514dbc106d239d1babda884cdd4aef8921cbe","author":{"email":"57a33a5496950fec8433e4dd83347673459dcdfc@darwinsys.com","name":"Ian Darwin"},"message":"Yet more javadoc issues","distinct":true,"url":"https://api.github.com/repos/IanDarwin/darwinsys-api/commits/391514dbc106d239d1babda884cdd4aef8921cbe"}]},"public":true,"created_at":"2015-01-01T15:02:12Z"}
,{"id":"2489652077","type":"PushEvent","actor":{"id":4961280,"login":"alaviss","gravatar_id":"","url":"https://api.github.com/users/alaviss","avatar_url":"https://avatars.githubusercontent.com/u/4961280?"},"repo":{"id":28482184,"name":"alaviss/pascal-stuff","url":"https://api.github.com/repos/alaviss/pascal-stuff"},"payload":{"push_id":536864441,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"7c3ea35a18223b2bdcc96eaf82993b8f7faaf09f","before":"529cd11ba815cd51d58e514e3323012a9d11bdf6","commits":[{"sha":"7c3ea35a18223b2bdcc96eaf82993b8f7faaf09f","author":{"email":"047c60a2759a82c45545c3d43f3d3e3b61e4128d@users.noreply.github.com","name":"Leorize"},"message":"Playing around with stuff","distinct":true,"url":"https://api.github.com/repos/alaviss/pascal-stuff/commits/7c3ea35a18223b2bdcc96eaf82993b8f7faaf09f"}]},"public":true,"created_at":"2015-01-01T15:02:12Z"}
,{"id":"2489652079","type":"PushEvent","actor":{"id":73937,"login":"viz3","gravatar_id":"","url":"https://api.github.com/users/viz3","avatar_url":"https://avatars.githubusercontent.com/u/73937?"},"repo":{"id":3569353,"name":"viz3/viz3.github.com","url":"https://api.github.com/repos/viz3/viz3.github.com"},"payload":{"push_id":536864442,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"140afc4326f1d0fa2e55966e423664b8225a5d85","before":"2460588ce161021c1ff1c285f58133a2c6f6c5eb","commits":[{"sha":"140afc4326f1d0fa2e55966e423664b8225a5d85","author":{"email":"87400bba45b8439b910c3212f867893a0efd48b3@gmail.com","name":"Yusuke Odate"},"message":"update rss2.xml","distinct":true,"url":"https://api.github.com/repos/viz3/viz3.github.com/commits/140afc4326f1d0fa2e55966e423664b8225a5d85"}]},"public":true,"created_at":"2015-01-01T15:02:12Z"}
,{"id":"2489652080","type":"CreateEvent","actor":{"id":5436451,"login":"DavidGeek","gravatar_id":"","url":"https://api.github.com/users/DavidGeek","avatar_url":"https://avatars.githubusercontent.com/u/5436451?"},"repo":{"id":28688634,"name":"DavidGeek/Website","url":"https://api.github.com/repos/DavidGeek/Website"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"A learn and code website","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:02:13Z"}
,{"id":"2489652087","type":"PushEvent","actor":{"id":4353077,"login":"robin1501","gravatar_id":"","url":"https://api.github.com/users/robin1501","avatar_url":"https://avatars.githubusercontent.com/u/4353077?"},"repo":{"id":26765137,"name":"robin1501/LevelUp","url":"https://api.github.com/repos/robin1501/LevelUp"},"payload":{"push_id":536864445,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"86d41c80a58f883b6d2a17aa80649217712eccd4","before":"62e5ee81ddda8bd46bcb47a0a5a9b6d7c30095fc","commits":[{"sha":"86d41c80a58f883b6d2a17aa80649217712eccd4","author":{"email":"a8c2dd94bb639a7348d3708a3ba3e37a383f99eb@dhbw-loerrach.de","name":"Robin Krietsch"},"message":"workout vorlagen","distinct":true,"url":"https://api.github.com/repos/robin1501/LevelUp/commits/86d41c80a58f883b6d2a17aa80649217712eccd4"}]},"public":true,"created_at":"2015-01-01T15:02:14Z"}
,{"id":"2489652090","type":"CreateEvent","actor":{"id":5684688,"login":"toubou91","gravatar_id":"","url":"https://api.github.com/users/toubou91","avatar_url":"https://avatars.githubusercontent.com/u/5684688?"},"repo":{"id":28688635,"name":"toubou91/Android-Application-Programming-with-OpenCV","url":"https://api.github.com/repos/toubou91/Android-Application-Programming-with-OpenCV"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:02:16Z"}
,{"id":"2489652092","type":"CreateEvent","actor":{"id":2898638,"login":"gpedro","gravatar_id":"","url":"https://api.github.com/users/gpedro","avatar_url":"https://avatars.githubusercontent.com/u/2898638?"},"repo":{"id":28688636,"name":"TibiaJS/tibia-flags","url":"https://api.github.com/repos/TibiaJS/tibia-flags"},"payload":{"ref":null,"ref_type":"repository","master_branch":"master","description":"Generate or Parse Tibia Flags to use","pusher_type":"user"},"public":true,"created_at":"2015-01-01T15:02:16Z","org":{"id":10197512,"login":"TibiaJS","gravatar_id":"","url":"https://api.github.com/orgs/TibiaJS","avatar_url":"https://avatars.githubusercontent.com/u/10197512?"}}
,{"id":"2489652093","type":"IssueCommentEvent","actor":{"id":1573299,"login":"rovo89","gravatar_id":"","url":"https://api.github.com/users/rovo89","avatar_url":"https://avatars.githubusercontent.com/u/1573299?"},"repo":{"id":3911317,"name":"rovo89/XposedInstaller","url":"https://api.github.com/repos/rovo89/XposedInstaller"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/rovo89/XposedInstaller/issues/201","labels_url":"https://api.github.com/repos/rovo89/XposedInstaller/issues/201/labels{/name}","comments_url":"https://api.github.com/repos/rovo89/XposedInstaller/issues/201/comments","events_url":"https://api.github.com/repos/rovo89/XposedInstaller/issues/201/events","html_url":"https://github.com/rovo89/XposedInstaller/issues/201","id":35693261,"number":201,"title":"No notification buttons for sideloaded module","user":{"login":"pylerSM","id":3438489,"avatar_url":"https://avatars.githubusercontent.com/u/3438489?v=3","gravatar_id":"","url":"https://api.github.com/users/pylerSM","html_url":"https://github.com/pylerSM","followers_url":"https://api.github.com/users/pylerSM/followers","following_url":"https://api.github.com/users/pylerSM/following{/other_user}","gists_url":"https://api.github.com/users/pylerSM/gists{/gist_id}","starred_url":"https://api.github.com/users/pylerSM/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/pylerSM/subscriptions","organizations_url":"https://api.github.com/users/pylerSM/orgs","repos_url":"https://api.github.com/users/pylerSM/repos","events_url":"https://api.github.com/users/pylerSM/events{/privacy}","received_events_url":"https://api.github.com/users/pylerSM/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"milestone":null,"comments":8,"created_at":"2014-06-13T17:58:59Z","updated_at":"2015-01-01T15:02:16Z","closed_at":null,"body":"I am just playing with Xposed, developing small module and I have just realized that notification about new/updated sideloaded module (APK from exclipse) do not include notification buttons (Reboot and activate). There is no such buttons for sideloaded modules.\r\n\r\nCan you add these buttons, please?"},"comment":{"url":"https://api.github.com/repos/rovo89/XposedInstaller/issues/comments/68488535","html_url":"https://github.com/rovo89/XposedInstaller/issues/201#issuecomment-68488535","issue_url":"https://api.github.com/repos/rovo89/XposedInstaller/issues/201","id":68488535,"user":{"login":"rovo89","id":1573299,"avatar_url":"https://avatars.githubusercontent.com/u/1573299?v=3","gravatar_id":"","url":"https://api.github.com/users/rovo89","html_url":"https://github.com/rovo89","followers_url":"https://api.github.com/users/rovo89/followers","following_url":"https://api.github.com/users/rovo89/following{/other_user}","gists_url":"https://api.github.com/users/rovo89/gists{/gist_id}","starred_url":"https://api.github.com/users/rovo89/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rovo89/subscriptions","organizations_url":"https://api.github.com/users/rovo89/orgs","repos_url":"https://api.github.com/users/rovo89/repos","events_url":"https://api.github.com/users/rovo89/events{/privacy}","received_events_url":"https://api.github.com/users/rovo89/received_events","type":"User","site_admin":false},"created_at":"2015-01-01T15:02:16Z","updated_at":"2015-01-01T15:02:16Z","body":"Sorry, no idea what you mean. BigTextStyle just means that we can use different texts for the expanded notification versus the collapsed notifcation. The buttons should be independent of that. Whether they are shown or not is indeed controlled by Android - only the top notification shows the buttons. I don't think we should interfere with that on app-level. If you don't like it, there might be an Xposed module which can always show them. "}},"public":true,"created_at":"2015-01-01T15:02:16Z"}
,{"id":"2489652094","type":"PushEvent","actor":{"id":4582835,"login":"hamini","gravatar_id":"","url":"https://api.github.com/users/hamini","avatar_url":"https://avatars.githubusercontent.com/u/4582835?"},"repo":{"id":28688513,"name":"hamini/sqlalchem","url":"https://api.github.com/repos/hamini/sqlalchem"},"payload":{"push_id":536864447,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"814c0dd6a66c9987998be314e13e4aa19d19994d","before":"58527233d610608cd6ac9492f35cbdae0508833d","commits":[{"sha":"ec9ddfc5eae5fd302c72faf9b50f60d42e539148","author":{"email":"f44e77edbd869fff0a564f864944cde5b10d166e@gmail.com","name":"hamed"},"message":"first","distinct":true,"url":"https://api.github.com/repos/hamini/sqlalchem/commits/ec9ddfc5eae5fd302c72faf9b50f60d42e539148"},{"sha":"814c0dd6a66c9987998be314e13e4aa19d19994d","author":{"email":"f44e77edbd869fff0a564f864944cde5b10d166e@gmail.com","name":"hamed"},"message":"Merge remote-tracking branch 'origin/master'","distinct":true,"url":"https://api.github.com/repos/hamini/sqlalchem/commits/814c0dd6a66c9987998be314e13e4aa19d19994d"}]},"public":true,"created_at":"2015-01-01T15:02:16Z"}
,{"id":"2489652095","type":"PushEvent","actor":{"id":1822073,"login":"opencm","gravatar_id":"","url":"https://api.github.com/users/opencm","avatar_url":"https://avatars.githubusercontent.com/u/1822073?"},"repo":{"id":18328345,"name":"cloudify-cosmo/cloudify-bash-plugin","url":"https://api.github.com/repos/cloudify-cosmo/cloudify-bash-plugin"},"payload":{"push_id":536864448,"size":1,"distinct_size":1,"ref":"refs/heads/1.2m1-build","head":"f36ca27d9911f5a4bfa05c85e3cbc5025b2f370c","before":"a2f73bd1801deda0a12bb8b3ccc31dfe6eb9fbb7","commits":[{"sha":"f36ca27d9911f5a4bfa05c85e3cbc5025b2f370c","author":{"email":"19b4e4f58d64f37db6a7be890c1f04c68a4afc62@gigaspaces.com","name":"opencm"},"message":"Bump version to 1.2m1","distinct":true,"url":"https://api.github.com/repos/cloudify-cosmo/cloudify-bash-plugin/commits/f36ca27d9911f5a4bfa05c85e3cbc5025b2f370c"}]},"public":true,"created_at":"2015-01-01T15:02:16Z","org":{"id":6260555,"login":"cloudify-cosmo","gravatar_id":"","url":"https://api.github.com/orgs/cloudify-cosmo","avatar_url":"https://avatars.githubusercontent.com/u/6260555?"}}
,{"id":"2489652097","type":"PushEvent","actor":{"id":10252673,"login":"quhezheng","gravatar_id":"","url":"https://api.github.com/users/quhezheng","avatar_url":"https://avatars.githubusercontent.com/u/10252673?"},"repo":{"id":28398342,"name":"quhezheng/HomeIP","url":"https://api.github.com/repos/quhezheng/HomeIP"},"payload":{"push_id":536864450,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"be239644a06f031e9e16ca02f6918cbc88bebde1","before":"494d351b663ab026ddb2d6d39003a24eb8346e7c","commits":[{"sha":"be239644a06f031e9e16ca02f6918cbc88bebde1","author":{"email":"798520c19e899fb2be364efde581283231d48b6f@126.com","name":"quhezheng"},"message":"update","distinct":true,"url":"https://api.github.com/repos/quhezheng/HomeIP/commits/be239644a06f031e9e16ca02f6918cbc88bebde1"}]},"public":true,"created_at":"2015-01-01T15:02:16Z"}
,{"id":"2489652100","type":"ForkEvent","actor":{"id":570037,"login":"jeffutter","gravatar_id":"","url":"https://api.github.com/users/jeffutter","avatar_url":"https://avatars.githubusercontent.com/u/570037?"},"repo":{"id":451490,"name":"digitalBush/jquery.maskedinput","url":"https://api.github.com/repos/digitalBush/jquery.maskedinput"},"payload":{"forkee":{"id":28688637,"name":"jquery.maskedinput","full_name":"jeffutter/jquery.maskedinput","owner":{"login":"jeffutter","id":570037,"avatar_url":"https://avatars.githubusercontent.com/u/570037?v=3","gravatar_id":"","
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment